 
        :root {
            --primary-color: #1a365d;
            --secondary-color: #2b77ad;
            --accent-color: #f6ad55;
            --light-blue: #e6fffa;
            --warm-white: #fffffe;
            --soft-gray: #f7fafc;
            --text-dark: #2d3748;
            --text-light: #718096;
            --emerald: #38a169;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Curved Navigation */
        .navbar-custom {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 50px;
            padding: 0.5rem 2rem;
            box-shadow: 0 10px 40px rgba(26, 54, 93, 0.15);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(26, 54, 93, 0.1);
            width: 90%;
        }

        .navbar-custom:hover {
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 15px 50px rgba(26, 54, 93, 0.2);
        }

        .navbar-brand-custom {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.4rem;
            color: var(--primary-color) !important;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-links-custom {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-link-custom {
            color: var(--text-dark) !important;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link-custom::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-color);
            border-radius: 1px;
            transition: width 0.3s ease;
        }

        .nav-link-custom:hover {
            color: var(--primary-color) !important;
        }

        .nav-link-custom:hover::before {
            width: 100%;
        }

        /* Enhanced Hero with Background Images */
        .hero-asymmetric {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(26, 54, 93, 0.7), rgba(43, 119, 173, 0.7)),
                        url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-asymmetric::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 50% 0 50% 50%;
            opacity: 0.05;
            transform: rotate(15deg);
        }

        .hero-content-left {
            z-index: 2;
            position: relative;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 600;
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease 0.3s forwards;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease 0.5s forwards;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease 0.7s forwards;
        }

        .btn-hero-primary {
            background: linear-gradient(45deg, var(--accent-color), #fbb03b);
            border: none;
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(246, 173, 85, 0.4);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(246, 173, 85, 0.6);
            color: white;
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            padding: 13px 35px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn-hero-secondary:hover {
            background: white;
            color: var(--primary-color);
        }

        .hero-visual-right {
            position: relative;
            z-index: 2;
        }

        .floating-cards {
            position: relative;
            height: 600px;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(26, 54, 93, 0.1);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(246, 173, 85, 0.2);
        }

        .floating-card:hover {
            transform: translateY(-10px) rotate(-2deg);
            box-shadow: 0 30px 80px rgba(26, 54, 93, 0.15);
        }

        .card-1 {
            top: 20px;
            right: 100px;
            width: 280px;
            animation: float 6s ease-in-out infinite;
        }

        .card-2 {
            top: 200px;
            right: 20px;
            width: 250px;
            animation: float 6s ease-in-out infinite 2s;
        }

        .card-3 {
            top: 380px;
            right: 120px;
            width: 260px;
            animation: float 6s ease-in-out infinite 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--accent-color), #fbb03b);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
        }

        /* Zigzag About Section */
        .why-choose-zigzag {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 4rem 0;
            margin: 2rem 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .zigzag-item {
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .zigzag-item:nth-child(odd) .zigzag-content {
            padding-right: 2rem;
        }

        .zigzag-item:nth-child(even) .zigzag-content {
            padding-left: 2rem;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .zigzag-visual {
            height: 300px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(44, 90, 160, 0.3);
        }

        .zigzag-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .zigzag-visual i {
            font-size: 4rem;
            color: white;
            z-index: 1;
        }

        .zigzag-number {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-color), #ff8e8e);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: var(--light-blue);
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            background: var(--light-blue);
            transform: translateX(5px);
        }

        .feature-list i {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-right: 1rem;
            min-width: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--primary-color);
            border-radius: 15px;
            border: 2px solid rgba(44, 90, 160, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light-blue);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 600;
        }

        .btn-explore {
            background: linear-gradient(135deg, var(--accent-color));
            color: white;
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }

        .btn-explore:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
            color: white;
        }

        @media (max-width: 768px) {
            .zigzag-item:nth-child(odd) .zigzag-content,
            .zigzag-item:nth-child(even) .zigzag-content {
                padding: 1rem;
            }

            .zigzag-visual {
                height: 200px;
                margin-bottom: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Team Cards with Images - Horizontal Scroll */
        .team-section-hybrid {
            padding: 6rem 0;
            background: var(--soft-gray);
        }

        .team-scroll-container {
            overflow-x: auto;
            padding: 2rem 0;
            margin: 2rem 0;
        }

        .team-scroll-wrapper {
            display: flex;
            gap: 2rem;
            padding: 0 1rem;
            min-width: max-content;
        }

        .team-card-hybrid {
            flex: 0 0 320px;
            background: white;
            border-radius: 25px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(26, 54, 93, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(246, 173, 85, 0.2);
            position: relative;
            overflow: hidden;
        }

        .team-card-hybrid::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(246, 173, 85, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .team-card-hybrid:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(26, 54, 93, 0.2);
        }

        .team-card-hybrid:hover::before {
            left: 100%;
        }

        .team-image-hybrid {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background-size: cover;
            background-position: center;
            border: 4px solid var(--accent-color);
            box-shadow: 0 8px 25px rgba(246, 173, 85, 0.3);
            transition: all 0.3s ease;
        }

        .team-card-hybrid:hover .team-image-hybrid {
            transform: scale(1.1);
            border-color: var(--primary-color);
        }

        .team-name-hybrid {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .team-role-hybrid {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .team-description-hybrid {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .team-specialties-hybrid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .specialty-badge {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-size: 0.75rem;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-weight: 500;
        }

        /* Scroll indicators */
        .scroll-indicator {
            text-align: center;
            color: var(--text-light);
            margin-top: 1rem;
        }

        .scroll-hint {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        /* Custom scrollbar for team section */
        .team-scroll-container::-webkit-scrollbar {
            height: 8px;
        }

        .team-scroll-container::-webkit-scrollbar-track {
            background: var(--light-blue);
            border-radius: 4px;
        }

        .team-scroll-container::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 4px;
        }

        .team-scroll-container::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }

        /* Masonry Gallery */
        .gallery-masonry {
            padding: 6rem 0;
            background: var(--warm-white);
        }

        .masonry-grid {
            column-count: 3;
            column-gap: 1rem;
        }

        .masonry-item {
            background: var(--light-blue);
            border-radius: 20px;
            margin-bottom: 1rem;
            break-inside: avoid;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .masonry-item:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
        }

        .masonry-item.tall {
            height: 300px;
        }

        .masonry-item.medium {
            height: 200px;
        }

        .masonry-item.short {
            height: 150px;
        }

        .masonry-content {
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--primary-color);
            text-align: center;
        }

        /* Testimonials Carousel */
        .testimonials-modern {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            position: relative;
        }

        .testimonials-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .testimonial-carousel-modern {
            position: relative;
            z-index: 2;
        }

        .testimonial-slide-modern {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
            display: none;
        }

        .testimonial-slide-modern.active {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }

        .testimonial-text-modern {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .testimonial-author-modern {
            font-weight: 600;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .testimonial-dots-modern {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .testimonial-dot-modern {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot-modern.active {
            background: var(--accent-color);
            transform: scale(1.3);
        }

        /* Wave Footer */
        .footer-wave {
            background: var(--text-dark);
            color: white;
            position: relative;
            padding: 4rem 0 2rem;
        }

        .footer-wave::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 50px;
            background: var(--text-dark);
            clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
        }

        .newsletter-modern {
            background: linear-gradient(45deg, var(--accent-color), #fbb03b);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            color: white;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .newsletter-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .newsletter-content {
            position: relative;
            z-index: 2;
        }

        .form-floating-modern .form-control {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 15px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .blog-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .blog-link {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            text-align: center;
        }

        .blog-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            color: white;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar-custom {
                position: relative;
                top: 0;
                transform: none;
                margin: 1rem;
                border-radius: 20px;
            }
            
            .nav-links-custom {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .team-orbit {
                width: 300px;
                height: 300px;
            }
            
            .masonry-grid {
                column-count: 1;
            }
            
            .floating-cards {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .masonry-grid {
                column-count: 2;
            }
        }

        /* Scroll Animations */
        .reveal-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        /* FAQ Section Styles */
        .faq-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 4rem 0;
            margin: 2rem 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .faq-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(44, 90, 160, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        }

        .faq-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(44, 90, 160, 0.15);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 1));
        }

        .faq-question {
            margin-bottom: 1.5rem;
        }

        .faq-icon {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .faq-question h5 {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            line-height: 1.4;
            margin: 0;
        }

        .faq-answer {
            position: relative;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
            font-size: 0.95rem;
        }

        .faq-cta {
            background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(255, 107, 107, 0.05));
            border-radius: 20px;
            padding: 3rem 2rem;
            border: 2px solid rgba(44, 90, 160, 0.1);
        }

        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
        }

        @media (max-width: 768px) {
            .zigzag-item:nth-child(odd) .zigzag-content,
            .zigzag-item:nth-child(even) .zigzag-content {
                padding: 1rem;
            }

            .zigzag-visual {
                height: 200px;
                margin-bottom: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .faq-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .faq-cta {
                padding: 2rem 1.5rem;
            }

            .btn-explore, .btn-outline-primary {
                display: block;
                margin-bottom: 1rem;
                width: 100%;
            }
        }
          /* Option 2: Horizontal Scrolling FAQ */
        .faq-horizontal {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem 0;
            margin: 2rem 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .faq-scroll-container {
            position: relative;
            overflow: hidden;
            padding: 0 2rem;
        }

        .faq-scroll-wrapper {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 1rem;
        }

        .faq-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

        .faq-card-horizontal {
            min-width: 350px;
            max-width: 350px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(44, 90, 160, 0.1);
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex-shrink: 0;
        }

        .faq-card-horizontal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color));
            border-radius: 15px 15px 0 0;
        }

        .faq-card-horizontal:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(44, 90, 160, 0.15);
        }

        .faq-card-horizontal .faq-icon {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .faq-card-horizontal h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.4;
        }

        .faq-card-horizontal p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
            font-size: 0.9rem;
        }

        .scroll-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color));
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .scroll-nav:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
        }

        .scroll-prev {
            left: 1rem;
        }

        .scroll-next {
            right: 1rem;
        }

        .scroll-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .scroll-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(44, 90, 160, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-dot.active {
            background: var(--accent-color);
            transform: scale(1.2);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-divider {
            height: 2px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            width: 100px;
            margin: 3rem auto;
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .faq-card-horizontal {
                min-width: 280px;
                max-width: 280px;
                padding: 1.5rem;
            }

            .scroll-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .faq-question {
                padding: 1rem 1.5rem;
            }

            .faq-answer.active {
                padding: 0 1.5rem 1rem 1.5rem;
            }
        }
  
    