:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #11134E;
            --light: #f8fafc;
            --accent: #909db0;
            --gray: #64748b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--secondary);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 0 0;
        }

        .logo img {
            height: 100px; /* Adjust this to match your desired logo height */
            width: auto; /* This maintains the aspect ratio */
            transition: opacity 0.3s;
        }

        .logo img:hover {
            opacity: 0.8; /* Optional: slight transparency on hover */
        }

        header {
            background-color: #FFFFFF;
            color: #11134E;
            padding: 10px 0;
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-left: 40px;
        }
        
        /* Language Selector Styles */
        .language-selector {
            position: relative;
            display: inline-block;
            margin-left: 30px;
        }

        .language-current {
            background: none;
            border: none;
            color: var(--navy);
            font-size: 1.6rem;
            font-weight: 600;
            cursor: pointer;
            padding: 5px 10px;
            transition: color 0.3s;
        }

        .language-dropdown {
            position: absolute;
            right: 0;
            top: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            list-style: none;
            padding: 8px 0;
            padding-right: 0px;
            margin-top: 5px;
            min-width: 60px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
/* Debug borders - remove after fixing 
.language-selector { border: 1px solid red; }
.language-dropdown { border: 1px solid blue; }
.language-option { border: 1px solid green; }*/
        .language-selector:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
        }

        .language-option {
            display: block;
            padding: 8px 16px;
            color: var(--navy);
            text-decoration: none;
            transition: all 0.2s;
            text-align: center;
        }

        .language-option:hover {
            background-color: rgba(249, 115, 22, 0.1);
            color: var(--accent);
            border-radius: 20px;
        }

        /* Current language highlight */
        .language-current.active {
            color: var(--accent);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links a {
            color: #11134E;
            font-size: 1.6rem; /* Increased from default */
            font-weight: 600; /* Make slightly bolder */
            margin-left: 30px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a.active {
            color: var(--accent);
            font-weight: 700;
        }
        
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, var(--secondary) 0%, #334155 100%);
            color: white;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        h1 span {
            color: var(--accent);
        }
        
        .tagline {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #e2e8f0;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px var(--gray);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px var(--gray);
        }
        
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--secondary);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .benefits {
            background-color: white;
        }
        
        .benefits-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            background-color: rgba(249, 115, 22, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--accent);
            font-size: 2rem;
        }
        
        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        /* Benefits2 Section */
        .benefits2-content {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
            padding: 0 0px;
            padding-left: 20px;
            background-color: #f1f5f9;
            border-radius: 80px;
        }

        .benefits2-text {
            flex: 1;
            padding-right: 20px;
        }

        .benefits2-text h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .benefits2-text ul {
            list-style-type: none;
            margin-top: 20px;
        }

        .benefits2-text li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }

        .benefits2-text li::before {
            content: "•";
            color: var(--accent);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -3px;
        }

        .benefits2-image {
            flex: 1;
            text-align: center;
        }

        .benefits2-image img {
            max-width: 100%;
            border-radius: 80px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Benefits3 Section (Reversed Layout) */
        .benefits3-content {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
            background-color: #f1f5f9;
            border-radius: 80px;
        }

        .benefits3-text {
            flex: 1;
            padding-left: 20px; /* Changed from padding-right */
        }

        .benefits3-image {
            flex: 1;
            text-align: center;
        }

        .benefits3-image img {
            max-width: 100%;
            border-radius: 80px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Responsive Layout - Same as benefits2 */
        @media (max-width: 768px) {
            .benefits3-content {
                flex-direction: column;
            }
            
            .benefits3-text {
                padding-left: 0;
                margin-bottom: 30px;
            }
            
            .benefits3-image {
                order: -1; /* Image still appears first on mobile */
            }
        }
        /* Responsive Layout */
        @media (max-width: 768px) {
            .benefits2-content {
                flex-direction: column;
            }
            
            .benefits2-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .benefits2-image {
                order: -1;
            }
        }
        
        .process {
            background-color: #f1f5f9;
        }
        
        .steps-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 60px;
            position: relative;
        }
        
        .step-number {
            background-color: var(--accent);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-right: 30px;
            box-shadow: 0 5px 15px var(--gray);
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            width: 3px;
            background-color: #e2e8f0;
            top: 50px;
            bottom: -60px;
            left: 25px;
        }
        
        .testimonials {
            background-color: white;
        }
        
        .testimonial-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--secondary);
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-text::before, .testimonial-text::after {
            content: '"';
            color: var(--accent);
            font-size: 4rem;
            position: absolute;
            opacity: 0.2;
        }
        
        .testimonial-text::before {
            top: -20px;
            left: -20px;
        }
        
        .testimonial-text::after {
            bottom: -50px;
            right: -20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary);
        }
        
        .testimonial-position {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .cta {
            background: linear-gradient(135deg, var(--secondary) 0%, #334155 100%);
            color: white;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .cta-text {
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: #e2e8f0;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .nav-links a {
                font-size: 1rem; /* Slightly smaller on mobile */
             }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .benefit-card {
                min-width: 100%;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
        }