:root {
            --primary: #2D5A3D;
            --primary-dark: #1E3D29;
            --secondary: #8FBC8F;
            --accent: #D4AF37;
            --text-dark: #1A1A1A;
            --text-light: #FFFFFF;
            --text-muted: #666666;
            --bg-light: #F8FAF8;
            --bg-cream: #FDF8F0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--accent);
        }

        .nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav > a,
        .nav-dropdown > .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav > a:hover,
        .nav-dropdown:hover > .nav-link {
            color: var(--primary);
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .nav-dropdown:hover .nav-link svg {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 15px 0;
            min-width: 260px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid white;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: var(--bg-light);
            color: var(--primary);
            padding-left: 25px;
        }

        .dropdown-menu a svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
            flex-shrink: 0;
        }

        .dropdown-menu a span {
            display: flex;
            flex-direction: column;
        }

        .dropdown-menu a span small {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .phone-header {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--primary);
        }

        .phone-header svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('../images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 700px;
            color: var(--text-light);
            padding: 40px 0;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 35px;
        }

        .badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--text-dark);
        }

        .btn-primary:hover {
            background: #C9A030;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background: var(--text-light);
            color: var(--primary);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 250, 248, 0.95), rgba(248, 250, 248, 0.95)), url('../images/family-happy.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid var(--secondary);
            border-radius: 20px;
            z-index: -1;
        }

        .about-content h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-item svg {
            width: 24px;
            height: 24px;
            fill: var(--primary);
            flex-shrink: 0;
        }

        .feature-item span {
            font-weight: 500;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(rgba(253, 248, 240, 0.95), rgba(253, 248, 240, 0.95)), url('../images/healthy-lifestyle.jpg');
            background-size: cover;
            background-position: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* 12 Steps Section */
        .steps {
            padding: 100px 0;
            background: var(--primary);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/team-bg.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }

        .steps .container {
            position: relative;
            z-index: 1;
        }

        .steps .section-header h2 {
            color: var(--text-light);
        }

        .steps .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .step-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .step-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--text-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 15px;
        }

        .step-item h4 {
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* Detailed 12 Steps */
        .steps-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .steps-grid-detailed {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .step-item-detailed {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 20px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .step-item-detailed:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .step-item-detailed .step-number {
            min-width: 50px;
            height: 50px;
            flex-shrink: 0;
        }

        .step-content h4 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .step-content p {
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .steps-cta {
            text-align: center;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .steps-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Team Section */
        .team {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 250, 248, 0.95), rgba(248, 250, 248, 0.95)), url('../images/family-happy.jpg');
            background-size: cover;
            background-position: center;
        }

        .team-slider {
            position: relative;
            overflow: hidden;
        }

        .team-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .team-card {
            min-width: 280px;
            margin: 0 15px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .team-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .team-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .team-info span {
            display: block;
            margin-top: 10px;
            font-size: 0.85rem;
            color: var(--secondary);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.1);
        }

        .slider-btn svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* Documents Section */
        .documents {
            padding: 100px 0;
            background: linear-gradient(rgba(253, 248, 240, 0.95), rgba(253, 248, 240, 0.95)), url('../images/healthy-lifestyle.jpg');
            background-size: cover;
            background-position: center;
        }

        .docs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .doc-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .doc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .doc-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .doc-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .doc-card h4 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .doc-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Advantages Section */
        .advantages {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 250, 248, 0.97), rgba(248, 250, 248, 0.97)), url('../images/healthy-lifestyle.jpg');
            background-size: cover;
            background-position: center;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .advantage-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            display: flex;
            gap: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .advantage-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            border-color: var(--secondary);
        }

        .advantage-icon {
            width: 70px;
            height: 70px;
            min-width: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .advantage-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .advantage-content h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .advantage-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .advantage-stats {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .advantage-stats span {
            background: var(--bg-light);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid var(--secondary);
        }

        /* SEO Text Section */
        .seo-section {
            padding: 100px 0;
            background: linear-gradient(rgba(45, 90, 61, 0.9), rgba(45, 90, 61, 0.85)), url('../images/seo-section.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .seo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .seo-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .seo-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .seo-content {
            color: var(--text-light);
        }

        .seo-content h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
        }

        .seo-content p {
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .seo-content ul {
            list-style: none;
            margin-top: 25px;
        }

        .seo-content li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .seo-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 250, 248, 0.95), rgba(248, 250, 248, 0.95)), url('../images/family-happy.jpg');
            background-size: cover;
            background-position: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-item svg {
            width: 24px;
            height: 24px;
            fill: var(--primary);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .contact-item div h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .contact-item div p {
            color: var(--text-muted);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #E5E5E5;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group input::placeholder {
            color: #999;
        }

        .contact-form .btn {
            width: 100%;
            padding: 18px;
            font-size: 1.1rem;
        }

        .privacy-note {
            text-align: center;
            margin-top: 15px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .footer-about h3 span {
            color: var(--accent);
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.7;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-contact p {
            margin-bottom: 12px;
            opacity: 0.8;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            opacity: 0.7;
        }

        /* Mobile Styles */
        @media (max-width: 1024px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .about-grid,
            .contact-grid,
            .seo-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid-detailed {
                grid-template-columns: 1fr;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .docs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn-secondary {
                margin-left: 0;
                margin-top: 15px;
            }

            .hero-badges {
                flex-direction: column;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .step-item-detailed {
                flex-direction: column;
                text-align: center;
            }

            .step-item-detailed .step-number {
                margin: 0 auto;
            }

            .advantage-card {
                flex-direction: column;
                text-align: center;
            }

            .advantage-icon {
                margin: 0 auto;
            }

            .advantage-stats {
                justify-content: center;
            }

            .docs-grid {
                grid-template-columns: 1fr;
            }

            .team-card {
                min-width: 260px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-image::after {
                display: none;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 15px 0;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-dropdown {
            border-bottom: 1px solid #eee;
        }

        .mobile-dropdown-toggle {
            display: flex !important;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown-toggle svg {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown.active .mobile-dropdown-toggle svg {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            display: none;
            padding-left: 20px;
            background: #f9f9f9;
        }

        .mobile-dropdown-menu.active {
            display: block;
        }

        .mobile-dropdown-menu a {
            font-size: 0.95rem;
            padding: 12px 0;
            color: var(--text-muted);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }