/* Retro/Vintage Theme - GiftArsin */

/* Import Retro Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600&display=swap');

/* CSS Variables for Retro Color Scheme */
:root {
    --primary-red: #B8414B;
    --secondary-gold: #D4A574;
    --cream: #F5E6D3;
    --dark-brown: #4A2C2A;
    --light-cream: #FFF8F0;
    --accent-rust: #A65E4E;
    --text-dark: #2C1810;
    --border-vintage: #8B6F47;
    --shadow-soft: rgba(74, 44, 42, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-cream);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 165, 116, 0.03) 2px, rgba(212, 165, 116, 0.03) 4px);
}

/* Info Banner Styles */
.info-banner {
    background: linear-gradient(135deg, #2C5F2D 0%, #3A7D3E 100%);
    border-bottom: 3px solid var(--secondary-gold);
    padding: 12px 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1001;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.banner-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.banner-text {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.banner-text strong {
    color: var(--secondary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--secondary-gold);
    transform: rotate(90deg);
}

.info-banner.hidden {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--accent-rust) 100%);
    padding: 20px 0;
    border-bottom: 4px solid var(--secondary-gold);
    box-shadow: 0 4px 12px var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--secondary-gold);
    background: var(--cream);
    padding: 5px;
}

.logo-section h1 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 80%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-gold);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-rust) 100%);
    padding: 80px 20px;
    border-bottom: 6px double var(--secondary-gold);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 248, 240, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-cream);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary-gold);
    color: var(--dark-brown);
    border-color: var(--secondary-gold);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 70px 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-gold));
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: var(--cream);
    border-top: 3px solid var(--border-vintage);
    border-bottom: 3px solid var(--border-vintage);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--light-cream);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-soft);
    border: 3px solid var(--secondary-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-gold), var(--primary-red));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(184, 65, 75, 0.3);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(20%);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-block {
    background: var(--cream);
    padding: 35px;
    border-radius: 10px;
    border-left: 6px solid var(--primary-red);
    box-shadow: 0 4px 15px var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
}

.info-block:hover {
    border-left-width: 10px;
    box-shadow: 0 6px 25px rgba(184, 65, 75, 0.25);
    transform: translateY(-5px);
}

.info-image {
    margin-bottom: 20px;
}

.info-image img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-block:hover .info-image img {
    transform: scale(1.05);
}

.info-block h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-block p {
    color: var(--text-dark);
    line-height: 1.8;
    text-align: left;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-soft);
    border: 2px solid var(--secondary-gold);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.3);
}

.benefit-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    min-width: 80px;
    text-align: center;
    line-height: 1;
    opacity: 0.8;
}

.benefit-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Tips Section */
.tips-section {
    background: var(--light-cream);
}

.tips-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-red);
    box-shadow: 0 4px 15px var(--shadow-soft);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-top-width: 8px;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(184, 65, 75, 0.25);
}

.tip-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #3a1f1e 100%);
    color: var(--cream);
    padding: 60px 20px 30px;
    border-top: 6px solid var(--secondary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--secondary-gold);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-rust);
    padding-bottom: 10px;
}

.footer-column p {
    color: var(--light-cream);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.business-info,
.contact-info,
.license-info {
    font-size: 0.95rem;
    line-height: 1.8;
}

.business-info strong,
.contact-info strong,
.license-info strong {
    color: var(--secondary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--accent-rust);
    margin-top: 30px;
}

.footer-bottom p {
    color: var(--light-cream);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        min-width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Page Transition Effect */
body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Vintage Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 111, 71, 0.02) 2px, rgba(139, 111, 71, 0.02) 4px);
    pointer-events: none;
    z-index: 9999;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-rust) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 6px double var(--secondary-gold);
}

.page-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--cream);
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--light-cream);
}

/* Content Section Styles */
.content-section {
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-brown);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-gold);
}

.content-wrapper h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.info-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.info-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.8;
}

.info-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 1.3rem;
}

.inline-link {
    color: var(--primary-red);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--accent-rust);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.value-item {
    background: var(--cream);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-red);
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.value-item p {
    margin-bottom: 0;
}

.location-info {
    background: var(--cream);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-red);
    margin: 20px 0;
}

.location-info p {
    margin-bottom: 0;
    line-height: 1.8;
}

/* Steps Container */
.steps-container {
    margin: 40px 0;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--cream);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-soft);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(184, 65, 75, 0.25);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    min-width: 60px;
    text-align: center;
    line-height: 1;
}

.step-content h4 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

.step-content p {
    margin-bottom: 0;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-gold);
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.info-box h4 {
    margin-top: 0 !important;
    color: var(--dark-brown);
}

.info-box p {
    margin-bottom: 0;
}

/* FAQ Container */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-gold);
    box-shadow: 0 3px 12px var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-width: 8px;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.faq-item h4 {
    margin-top: 0 !important;
    color: var(--dark-brown);
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Contact Form Styles */
.contact-form {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px var(--shadow-soft);
    border-top: 6px solid var(--primary-red);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-vintage);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--light-cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(184, 65, 75, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: var(--primary-red);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--accent-rust);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 65, 75, 0.4);
}

.contact-info-box {
    background: var(--cream);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 6px solid var(--primary-red);
}

.contact-info-box h4 {
    margin-top: 0 !important;
}

/* Legal Content Styles */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 40px;
    color: var(--text-dark);
    line-height: 1.9;
}

.legal-content li {
    margin-bottom: 12px;
}

.effective-date {
    background: var(--cream);
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-gold);
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--dark-brown);
}

/* Comparison Table Styles */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-rust) 100%);
    color: white;
}

.comparison-table th {
    padding: 20px 15px;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--light-cream);
}

.comparison-table tbody tr:hover {
    background: var(--cream);
}

.comparison-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #e0d5c7;
    color: var(--text-dark);
    line-height: 1.6;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark-brown);
    background: var(--cream);
}

/* Analysis Section */
.analysis-section {
    background: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    border-left: 6px solid var(--primary-red);
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.analysis-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Fee Comparison */
.fee-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.fee-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid var(--primary-red);
    box-shadow: 0 5px 20px var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
}

.fee-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(184, 65, 75, 0.3);
}

.fee-box h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 1.3rem;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

.fee-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    margin: 20px 0;
}

.fee-description {
    color: var(--accent-rust);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.fee-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.fee-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--cream);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.fee-details li:last-child {
    border-bottom: none;
}

/* Security Comparison */
.security-comparison {
    margin: 40px 0;
}

.security-item {
    background: var(--cream);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-gold);
    box-shadow: 0 3px 12px var(--shadow-soft);
}

.security-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 1.3rem;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

.security-item p {
    margin-bottom: 12px;
}

.security-item strong {
    color: var(--primary-red);
}

/* State Regulations */
.state-regulations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.regulation-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-gold);
    box-shadow: 0 4px 15px var(--shadow-soft);
    transition: all 0.3s ease;
}

.regulation-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.3);
}

.regulation-box h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    text-align: center;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.tip-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--accent-rust);
    box-shadow: 0 4px 15px var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(166, 94, 78, 0.3);
}

.tip-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.tip-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 1.2rem;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.tip-item p {
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 30px;
    border-radius: 10px;
    border: 3px solid var(--primary-red);
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(184, 65, 75, 0.2);
}

.disclaimer-box p {
    margin-bottom: 15px;
}

.disclaimer-box strong {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Form Disclaimer */
.form-disclaimer {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 20px 25px;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(184, 65, 75, 0.15);
}

.form-disclaimer p {
    margin: 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-disclaimer strong {
    color: var(--primary-red);
    font-size: 1rem;
}

/* Safety Page Styles */
.alert-box {
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 6px solid;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.alert-box.critical {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left-color: #D32F2F;
}

.alert-box h3 {
    color: #D32F2F;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 1.4rem;
}

/* Scam Types */
.scam-types {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.scam-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 3px solid;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.scam-item.urgent {
    border-color: #D32F2F;
    background: linear-gradient(to right, #FFEBEE 0%, white 100%);
}

.scam-item.warning {
    border-color: #F57C00;
    background: linear-gradient(to right, #FFF3E0 0%, white 100%);
}

.scam-item.alert {
    border-color: #FFA000;
    background: linear-gradient(to right, #FFF8E1 0%, white 100%);
}

.scam-item.caution {
    border-color: #7B1FA2;
    background: linear-gradient(to right, #F3E5F5 0%, white 100%);
}

.scam-item.info {
    border-color: #0288D1;
    background: linear-gradient(to right, #E1F5FE 0%, white 100%);
}

.scam-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.scam-icon {
    font-size: 2.5rem;
}

.scam-header h4 {
    flex: 1;
    margin: 0 !important;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.risk-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-badge.high {
    background: #D32F2F;
    color: white;
}

.risk-badge.medium {
    background: #F57C00;
    color: white;
}

.risk-badge.low {
    background: #388E3C;
    color: white;
}

/* Warning and Safety Lists */
.warning-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.warning-list li {
    padding: 10px 10px 10px 35px;
    margin-bottom: 8px;
    background: rgba(211, 47, 47, 0.05);
    border-left: 4px solid #D32F2F;
    border-radius: 4px;
    position: relative;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 10px;
}

.safety-checklist {
    list-style: none;
    padding: 0;
}

.safety-checklist li {
    padding: 12px 10px 12px 40px;
    margin-bottom: 10px;
    background: rgba(56, 142, 60, 0.05);
    border-left: 4px solid #388E3C;
    border-radius: 4px;
    position: relative;
}

.safety-checklist li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #388E3C;
    font-weight: bold;
    font-size: 1.2rem;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 10px 10px 10px 35px;
    margin-bottom: 8px;
    background: var(--cream);
    border-radius: 4px;
    position: relative;
}

.checklist li::before {
    content: '□';
    position: absolute;
    left: 10px;
    font-size: 1.2rem;
    color: var(--primary-red);
}

/* Tampering Section */
.tampering-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tampering-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-red);
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.tampering-item h4 {
    margin-top: 0 !important;
    color: var(--primary-red);
}

/* Identification Grid */
.identification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.id-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 3px solid var(--secondary-gold);
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.id-box h4 {
    margin-top: 0 !important;
    color: var(--dark-brown);
    font-size: 1.3rem;
}

/* Safety Guidelines */
.safety-guidelines {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.guideline-section {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-soft);
    border: 2px solid var(--secondary-gold);
}

.guideline-section h4 {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-rust) 100%);
    color: white;
    padding: 20px 30px;
    margin: 0 !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.guideline-content {
    padding: 30px;
}

/* Protection Tips */
.protection-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.protection-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.protection-box h4 {
    margin-top: 0 !important;
    font-size: 1.3rem;
    margin-bottom: 15px !important;
}

/* Emergency Steps */
.emergency-steps {
    margin: 40px 0;
}

.step-urgent,
.step-followup {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.step-urgent {
    border: 3px solid #D32F2F;
    border-left-width: 8px;
}

.step-followup {
    border: 3px solid #F57C00;
    border-left-width: 8px;
}

.step-urgent h4,
.step-followup h4 {
    margin-top: 0 !important;
    font-size: 1.4rem;
    margin-bottom: 20px !important;
}

.urgent-list {
    padding-left: 25px;
}

.urgent-list li {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-cream);
    border-radius: 8px;
}

.urgent-list li strong {
    color: var(--primary-red);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

/* Reporting Resources */
.reporting-resources {
    background: var(--cream);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.reporting-resources h4 {
    margin-top: 0 !important;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.resource-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.resource-item strong {
    display: block;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.resource-item p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Vulnerable Section */
.vulnerable-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.vulnerable-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid var(--secondary-gold);
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.vulnerable-box h4 {
    margin-top: 0 !important;
    font-size: 1.3rem;
    margin-bottom: 15px !important;
}

/* Tech Protection */
.tech-protection {
    margin: 30px 0;
}

.tech-box {
    background: linear-gradient(135deg, #E3F2FD 0%, white 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #0288D1;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.tech-box h4 {
    margin-top: 0 !important;
    color: #0288D1;
}

/* Best Practices Summary */
.best-practices-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.practice-column {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.practice-column.do {
    background: linear-gradient(135deg, #E8F5E9 0%, white 100%);
    border: 3px solid #388E3C;
}

.practice-column.dont {
    background: linear-gradient(135deg, #FFEBEE 0%, white 100%);
    border: 3px solid #D32F2F;
}

.practice-column h4 {
    margin-top: 0 !important;
    font-size: 1.5rem;
    margin-bottom: 20px !important;
}

.practice-column.do h4 {
    color: #388E3C;
}

.practice-column.dont h4 {
    color: #D32F2F;
}

.practice-column ul {
    list-style: none;
    padding: 0;
}

.practice-column.do ul li {
    padding: 10px 10px 10px 35px;
    margin-bottom: 10px;
    position: relative;
}

.practice-column.do ul li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: #388E3C;
    font-weight: bold;
    font-size: 1.2rem;
}

.practice-column.dont ul li {
    padding: 10px 10px 10px 35px;
    margin-bottom: 10px;
    position: relative;
}

.practice-column.dont ul li::before {
    content: '✗';
    position: absolute;
    left: 10px;
    color: #D32F2F;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Final Reminder */
.final-reminder {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.3);
}

.final-reminder h3 {
    color: white !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-size: 2rem;
}

.highlight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

/* Help Section */
.help-section {
    background: var(--cream);
    padding: 30px;
    border-radius: 10px;
    border-left: 6px solid var(--secondary-gold);
    margin: 40px 0;
}

/* Safety Awareness Section */
.safety-awareness {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 70px 20px;
    border-top: 4px solid #D32F2F;
    border-bottom: 4px solid #D32F2F;
}

.safety-alert {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.2);
    border: 3px solid #D32F2F;
}

.safety-alert-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.alert-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.alert-text {
    flex: 1;
    min-width: 300px;
}

.alert-text h3 {
    font-family: 'Playfair Display', serif;
    color: #D32F2F;
    font-size: 2rem;
    margin-bottom: 15px;
}

.alert-text p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.safety-quick-tips {
    background: var(--light-cream);
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 5px solid #D32F2F;
}

.safety-quick-tips h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.safety-quick-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-quick-tips ul li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Page Illustration */
.page-illustration {
    text-align: center;
    margin-bottom: 40px;
}

.page-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

/* Security Icon */
.security-header {
    text-align: center;
    margin: 30px 0;
}

.security-icon {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(184, 65, 75, 0.2));
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--secondary-gold);
    color: var(--cream);
    font-size: 1.5rem;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--secondary-gold);
    color: var(--dark-brown);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-soft);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.scroll-top-btn:hover {
    background: var(--accent-rust);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(184, 65, 75, 0.4);
}

/* Keyboard Navigation Support */
.keyboard-nav *:focus {
    outline: 3px solid var(--secondary-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .scroll-top-btn,
    .menu-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .page-header {
        background: white;
        color: black;
        border: none;
    }
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-brown);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px var(--shadow-soft);
    }

    .main-nav.active {
        max-height: 500px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--accent-rust);
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        min-width: 100%;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .page-illustration img {
        max-height: 250px;
    }

    .security-icon {
        max-width: 120px;
    }

    /* Banner Mobile Styles */
    .info-banner {
        padding: 10px 15px;
    }

    .banner-content {
        gap: 10px;
    }

    .banner-icon {
        font-size: 1.2rem;
    }

    .banner-text {
        font-size: 0.85rem;
        min-width: 100%;
        text-align: center;
    }

    .banner-close {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
}

