        :root {
            --primary: #0a2540;
            --secondary: #1d4ed8;
            --accent: #f59e0b;
            --accent-light: #fbbf24;
            --light: #f8fafc;
            --dark: #1e293b;
            --text: #475569;
            --success: #10b981;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        /* Reset only for main content */
        .main-content * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        .container {
            width: 90%;
            max-width: 1320px;
            margin: 0 auto;
        }

        .section-padding {
            padding: 100px 0;
        }

        /* Carousel Section */
        .carousel-section {
            position: relative;
            height: 67vh;
            overflow: hidden;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.8s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(29, 78, 216, 0.6));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .carousel-slide.active .carousel-content {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-content h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .carousel-content p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .carousel-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background-color: white;
            transform: scale(1.2);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            color: white;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(5px);
        }

        .carousel-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        /* Index Page Specific Buttons */
        .index-btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: var(--shadow);
        }

        .index-btn-primary {
            background: white;
            color: var(--primary);
        }

        .index-btn-primary:hover {
            background: var(--light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .index-btn-transparent {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .index-btn-transparent:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .index-btn-white {
            background: white;
            color: var(--primary);
        }

        .index-btn-white:hover {
            background: var(--light);
            transform: translateY(-3px);
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background-color: var(--light);
        }

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

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

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

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card:hover:before {
            width: 100%;
            opacity: 0.05;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 1.8rem;
            box-shadow: var(--shadow);
        }

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

        .feature-card p {
            margin-bottom: 20px;
        }

        .feature-link {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }

        .feature-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .feature-link:hover i {
            transform: translateX(5px);
        }

        /* Business Impact Section */
        .business-impact {
            padding: 120px 0;
            background: white;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .impact-card {
            background: var(--light);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .impact-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        .impact-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }

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

        .impact-card p {
            margin-bottom: 20px;
        }

        .impact-card ul {
            list-style: none;
            text-align: left;
        }

        .impact-card ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .impact-card ul li i {
            color: var(--success);
            margin-right: 10px;
        }

        /* Stats Section */
        .stats {
            padding: 120px 0;
            background: var(--gradient);
            color: white;
        }

        .stats .section-header h2,
        .stats .section-header p {
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-top: 70px;
        }

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

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: white;
            font-family: 'Montserrat', sans-serif;
        }

        .stat-text {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--accent-light);
        }

        .stat-description {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Process Section */
        .process {
            padding: 120px 0;
            background: var(--light);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 70px;
        }

        .process-step {
            text-align: center;
            padding: 40px 25px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .step-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 1.8rem;
        }

        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .process-step p {
            color: var(--text);
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: white;
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 50px auto 0;
            position: relative;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            margin: 0 20px;
            border: 1px solid #e2e8f0;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 30px;
            position: relative;
            line-height: 1.8;
        }

        .testimonial-text:before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 4rem;
            color: var(--accent);
            font-family: Georgia, serif;
            opacity: 0.3;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }

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

        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }

        .cta h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

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

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .carousel-content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .carousel-content h1 {
                font-size: 2.5rem;
            }

            .carousel-content p {
                font-size: 1.1rem;
            }

            .carousel-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .carousel-content h1 {
                font-size: 2.2rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

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

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

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

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

            .cta h2 {
                font-size: 2.2rem;
            }

            .index-btn {
                padding: 12px 25px;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .carousel-content h1 {
                font-size: 2rem;
            }

            .carousel-content p {
                font-size: 1rem;
            }

            .section-padding {
                padding: 70px 0;
            }

            .stat-number {
                font-size: 2.5rem;
            }

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

            .carousel-section {
                height: 80vh;
            }
        }