
        :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
            --dark: #2F2E41;
            --light: #F8F9FA;
            --success: #4CAF50;
            --info: #2196F3;
            --warning: #FFC107;
            --danger: #F44336;
            --navy-blue: #0F52BA;
            --herbal-green: #4CAF50;
            --indigo: #3F51B5;
            --text-dark: #333;
            --text-light: #777;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
html {
    scroll-behavior: smooth;
}
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--dark);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #5a52e0;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }

        .btn-secondary:hover {
            background-color: #e64c6f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 101, 132, 0.2);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 20px 0;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            font-weight: 500;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
/* Submenu Styles */
.submenu {
  list-style: none;
  position: static;
  top: 100%;
  left: 0;
  background: var(--secondary);
  padding: 10px 0;
  display: none;
  min-width: 180px;
  border-radius: 4px;
}

.submenu li a {
  padding: 8px 16px;
  color: #fff;
  display: block;
}

.submenu li a:hover {
  background: #444;
}

/* Show submenu on hover (desktop) */
.has-submenu:hover .submenu {
  display: block;
}

/* Optional: mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }

  .submenu {
    position: static;
  }

  .has-submenu:hover .submenu {
    display: none; /* Disable hover on mobile */
  }

  .has-submenu.active .submenu {
    display: block;
  }
}
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.1) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
            animation: fadeInUp 1s ease;
        }

        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .hero-text h1 span {
            color: var(--primary);
        }

        .hero-text p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-image img {
            width: 100%;
            max-width: 600px;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
        }

        .hero-image:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }

        .hero-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background-color: var(--secondary);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(255, 101, 132, 0.3);
            animation: pulse 2s infinite;
        }

        .hero-badge i {
            margin-right: 8px;
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
            position: relative;
        }

        .about-image img {
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: fadeInLeft 1s ease;
        }

        .about-badge h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .about-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
            font-size: 20px;
        }

        .feature-text h4 {
            margin-bottom: 5px;
        }

        .feature-text p {
            margin-bottom: 0;
            font-size: 14px;
        }

        /* Services Section */
        .services {
            background-color: var(--light);
        }
.services .price {color: #e64c6f;
    font-weight: 700;
}
        .services .section-title h2:after {
            background-color: var(--navy-blue);
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-card.solutions {
            border-top: 4px solid var(--navy-blue);
        }

        .service-card.herbals {
            border-top: 4px solid var(--herbal-green);
        }

        .service-icon {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
        }

        .service-icon.solutions {
            background-color: var(--navy-blue);
        }

        .service-icon.herbals {
            background-color: var(--herbal-green);
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            margin-bottom: 15px;
            font-size: 22px;
        }

        .service-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--navy-blue);
            font-weight: 500;
        }

        .service-link i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Products Section */
        .products {
            background-color: var(--light);
        }

        .products .section-title h2:after {
            background-color: var(--herbal-green);
        }

        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--herbal-green);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 500;
        }

        .product-content {
            padding: 20px;
        }

        .product-content h3 {
            margin-bottom: 10px;
            font-size: 18px;
        }

        .product-content p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .product-platforms {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .platform {
            display: inline-block;
            padding: 3px 10px;
            background-color: #f0f0f0;
            border-radius: 5px;
            font-size: 12px;
            color: var(--text-light);
        }

        .product-link {
            display: inline-flex;
            align-items: center;
            color: var(--herbal-green);
            font-weight: 500;
            font-size: 14px;
        }

        .product-link i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .product-link:hover i {
            transform: translateX(5px);
        }

        /* Brands Section */
        .brands {
            background-color: white;
            padding: 60px 0;
        }

        .brands-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .brands-title h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .brands-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .brand-slider {
            display: flex;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .brand-slider-track {
            display: flex;
            animation: scroll 30s linear infinite;
            width: calc(250px * 14);
        }

        .brand-slide {
            width: 200px;
            margin: 0 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }

        .brand-slide:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        .brand-slide img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--light);
        }

        .testimonials .section-title h2:after {
            background-color: var(--primary);
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .testimonial-quote {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            color: rgba(108, 99, 255, 0.1);
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 20px;
            color: var(--text-light);
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 16px;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 14px;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
            color: white;
            padding: 80px 0;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .stat-text {
            font-size: 18px;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta {
            background-color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-content p {
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }

        .footer-col p {
            color: #aaa;
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #aaa;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
            color: #aaa;
            font-size: 14px;
        }

        .footer-bottom p {
            margin-bottom: 0;
        }

        .footer-badges {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .footer-badge {
            display: inline-block;
            padding: 5px 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            font-size: 12px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 7));
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-text h1 {
                font-size: 40px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hero {
                padding-top: 100px;
                height: auto;
                min-height: auto;
                padding-bottom: 80px;
            }

            .hero-content {
                flex-direction: column;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }

            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .section {
                padding: 60px 0;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-text {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 32px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }
		.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.whatsapp-float i {
    margin-top: 15px;
}
.whatsapp-float:hover {
    background-color: #20c351;
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.brand h3 {font-size:22px; text-align:center; margin-bottom:30px;}
.brand h3 span {font-weight:600;}
.brand img {padding: 30px 50px; margin:15px; border-radius: 15px;  background:#FFF; box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.07); }
.marquee {overflow: hidden;}
.marquee-content {display:flex; animation: scrolling 10s linear infinite;}
.marquee-item {flex: 0 0 16vw; margin: 0 1vw;/*   flex: 0 0 20vw; */ /*   margin: 0 2vw; */}
.marquee-item img { display: block; width: 100%;/*   padding: 0 20px; */}
@keyframes scrolling { 0% { transform: translateX(0); }  100% { transform: translatex(-144vw); }}
.extra_link{font-weight: 500; margin-top: 10px;}
/* Header Styles */
        .team-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .team-header h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }
        
        .team-header h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .team-header p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        /* Team Card */
        .team-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .team-img {
            height: 280px;
            position: relative;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-img img {
            transform: scale(1.05);
        }
        
        .team-content {
            padding: 25px 20px;
            position: relative;
        }
        
        .team-name {
            font-size: 1.4rem;
            margin: 0 0 5px 0;
            color: var(--dark);
        }
        
        .team-title {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }
        
        .team-bio {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        /* Social Icons */
        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }
        
        .team-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #f1f3ff;
            color: var(--primary);
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-decoration: none;
        }
        
        .team-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Special Badge for Team Lead */
        .team-lead .team-img:after {
            content: 'Team Lead';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .team-header h2 {
                font-size: 2.2rem;
            }
        }
  /* Documents */
 .container1 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .list-container {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        
        .list-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .list {
            list-style-type: none;
        }
        
        .list-item {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .list-item:last-child {
            border-bottom: none;
        }
        
        .list-item a {
            color: #3498db;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }
        
        .list-item a:hover {
            color: #2980b9;
        }
        
        .document-date {
            display: block;
            font-size: 0.8rem;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .list-container {
                width: 100%;
            }
        }
        /* FAQ Section */
.custom-faq-section {
  background: #f9fafc;
  padding: 60px 20px;
}

.custom-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.custom-faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.custom-faq-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.custom-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.custom-faq-item.active .custom-faq-question::after {
  content: '−';
  transform: rotate(180deg);
  color: #0d6efd;
}

.custom-faq-question:hover {
  background: #f1f5ff;
}

.custom-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.custom-faq-item.active .custom-faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}
