        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@400;500;600;700&display=swap');

        :root {
            /* Primary blue palette */
            --primary: #194FF9;
            --primary-light: #7595FB;
            --primary-lighter: #BACAFD;
            --primary-lightest: #E8EDFE;
            --primary-dark: #0F32A1;

            /* Secondary dark blue palette */
            --secondary: #09256B;
            --secondary-light: #5C71A5;
            --secondary-lighter: #8596C2;
            --secondary-lightest: #AFBCDF;
            --secondary-dark: #071E56;

            /* Additional accents */
            --accent: #34c759;
            --accent-soft: rgba(52, 199, 89, 0.14);
            --light: #f8f9fa;
            --light-gradient: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f9f7ff 100%);
            --dark: #212529;
            --gray: #6c757d;
            --shadow-soft: 0 20px 40px rgba(16, 47, 147, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        h1, h2, h3, h4, h5, .logo, .btn, .nav-links a, .section-header h2, .countdown-item span {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

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

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 40px;
        }

        .logo svg {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            height: 100%;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            height: 100%;
        }

        .nav-links a svg {
            color: var(--primary);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a .en-content,
        .nav-links a .pl-content {
            display: none;
        }

        .nav-links a .en-content.active,
        .nav-links a .pl-content.active {
            display: inline;
        }

        .language-switch {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .language-switch button {
            background: none;
            border: none;
            cursor: pointer;
            opacity: 0.4;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            border-radius: 4px;
            width: 36px;
            height: 36px;
        }

        .language-switch button span {
            width: 30px;
            height: 22px;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
        }

        .language-switch button.active {
            opacity: 1;
        }

        .hero {
            background: linear-gradient(140deg, rgba(25, 79, 249, 0.95) 0%, rgba(9, 37, 107, 0.92) 60%, rgba(9, 37, 107, 0.85) 100%);
            color: white;
            padding: 120px 0 110px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 60%),
                        radial-gradient(circle at 85% 20%, rgba(116, 152, 255, 0.2), transparent 65%),
                        radial-gradient(circle at 50% 80%, rgba(12, 37, 112, 0.6), transparent 70%);
            mix-blend-mode: screen;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.3;
            background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Cpath d='M60 0v120M0 60h120'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .hero-copy {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2.6rem, 5vw, 3.5rem);
            line-height: 1.1;
        }

        .hero-subheadlines {
            display: grid;
            gap: 14px;
            font-size: 1.05rem;
        }

        .hero-subheadlines p {
            margin: 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .hero-subheadlines strong {
            font-weight: 600;
            color: white;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-visual {
            display: grid;
            gap: 18px;
        }

        .hero-visual-card {
            padding: 24px;
            border-radius: 18px;
            background: rgba(9, 37, 107, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 35px rgba(9, 37, 107, 0.35);
            backdrop-filter: blur(8px);
        }

        .hero-visual-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .hero-visual-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.78);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: var(--accent);
            color: white;
            padding: 14px 26px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 0.4px;
            box-shadow: 0 15px 25px rgba(52, 199, 89, 0.25);
            font-size: 0.95rem;
        }

        .btn:hover {
            background-color: #28a745;
            transform: translateY(-2px);
            box-shadow: 0 18px 35px rgba(52, 199, 89, 0.28);
        }

        .btn-outline {
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.45);
            color: white;
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.18);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(15, 50, 161, 0.25);
        }

        .btn-primary {
            background-color: white;
            color: var(--primary);
            box-shadow: 0 20px 30px rgba(255, 255, 255, 0.18);
        }

        .btn-primary:hover {
            background-color: var(--primary-lightest);
            color: var(--primary);
        }

        .btn-secondary {
            background-color: transparent;
            border: 1px solid var(--primary-lightest);
            color: var(--primary-lightest);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
        }

        /* Style for the paragraph above the button in the first CTA (#launch) */
        #launch .cta-content p {
             margin-bottom: 25px; /* Added space below the paragraph */
        }

        /* Style for the button in the first CTA (#launch) */
        #launch .cta-content a.btn-primary { /* More specific selector */
            padding: 16px 28px; /* Increased vertical padding */
            /* margin-top: 25px !important; Removed ineffective margin */
            display: inline-flex; /* Use inline-flex for alignment and margin */
            align-items: center; /* Vertically align icon and text */
            justify-content: center; /* Center content within button */
            gap: 10px; /* Space between icon and text */
            width: auto; /* Allow button to size to content */
        }

        .launch-countdown {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            max-width: 600px;
            margin: -50px auto 0;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
        }

        .launch-countdown h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 32px;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .countdown-item {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            border-radius: 5px;
            min-width: 80px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .countdown-item span {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            font-family: 'Sora', sans-serif;
        }

        .countdown-item p {
            font-size: 0.9rem;
            margin-top: 5px;
            font-family: 'Inter', sans-serif;
        }

        .features {
            padding: 120px 0;
            background: var(--light-gradient);
        }

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

        .section-header h2 {
            font-size: clamp(2.2rem, 4vw, 2.7rem);
            color: var(--secondary);
            margin-bottom: 18px;
            font-weight: 700;
        }

        .section-header p {
            color: var(--gray);
            max-width: 760px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(25, 79, 249, 0.08);
            color: var(--secondary);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .story-strip {
            background: white;
            border-radius: 28px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .story-strip::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 10% 10%, rgba(25, 79, 249, 0.08), transparent 55%),
                        radial-gradient(circle at 90% 90%, rgba(9, 37, 107, 0.08), transparent 60%);
        }

        .story-header {
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
        }

        .story-header h3 {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .story-header p {
            color: var(--gray);
            font-size: 1rem;
            max-width: 720px;
        }

        .story-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .story-card {
            background: var(--light-gradient);
            border-radius: 22px;
            padding: 26px;
            border: 1px solid rgba(25, 79, 249, 0.08);
            box-shadow: 0 20px 35px rgba(25, 79, 249, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .story-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 45px rgba(15, 50, 161, 0.18);
        }

        .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .story-card h4 {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .story-card p {
            font-size: 0.98rem;
            color: var(--gray);
            line-height: 1.6;
        }

        .marketplace-experience {
            padding: 120px 0;
            background: radial-gradient(circle at 20% 20%, rgba(25, 79, 249, 0.12), transparent 55%),
                        radial-gradient(circle at 80% 30%, rgba(9, 37, 107, 0.12), transparent 60%),
                        #ffffff;
        }

        .marketplace-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .marketplace-visual {
            position: relative;
            display: grid;
            gap: 20px;
        }

        .experience-badges {
            display: grid;
            gap: 16px;
        }

        .experience-badge {
            padding: 18px 22px;
            border-radius: 20px;
            background: rgba(25, 79, 249, 0.08);
            border: 1px solid rgba(25, 79, 249, 0.1);
            box-shadow: 0 18px 30px rgba(25, 79, 249, 0.1);
        }

        .experience-badge span {
            display: block;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 6px;
        }

        .experience-badge p {
            font-size: 0.9rem;
            color: rgba(9, 37, 107, 0.76);
            margin: 0;
        }

        .marketplace-orb {
            position: relative;
            padding: 40px;
            border-radius: 32px;
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(232, 237, 254, 0.8));
            box-shadow: 0 35px 60px rgba(15, 50, 161, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.7);
            overflow: hidden;
        }

        .marketplace-orb::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(25, 79, 249, 0.18), transparent 65%);
        }

        .marketplace-orb-content {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 14px;
        }

        .marketplace-orb h3 {
            font-size: 1.35rem;
            color: var(--secondary);
        }

        .marketplace-orb p {
            color: var(--gray);
            font-size: 1rem;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }

        .experience-card {
            padding: 26px;
            border-radius: 24px;
            background: white;
            border: 1px solid rgba(25, 79, 249, 0.08);
            box-shadow: 0 20px 35px rgba(25, 79, 249, 0.08);
        }

        .experience-card h4 {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .experience-card p {
            color: var(--gray);
            font-size: 0.98rem;
        }

        .trust-metrics {
            padding: 110px 0 80px;
            background: var(--light-gradient);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .metric-card {
            background: white;
            border-radius: 22px;
            padding: 30px;
            border: 1px solid rgba(25, 79, 249, 0.08);
            box-shadow: 0 25px 45px rgba(25, 79, 249, 0.08);
        }

        .metric-value {
            font-size: 2.2rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .metric-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .metric-quote {
            font-style: italic;
        }

        .metric-caption {
            display: block;
            margin-top: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
        }

        .how-it-works {
            padding: 60px 0;
            background-color: white;
        }

        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 30px 0;
        }

        .step {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            font-family: 'Sora', sans-serif;
        }

        .step h3 {
            margin-bottom: 15px;
            color: var(--secondary);
            font-size: 23px;
            font-weight: 700;
        }

        .step p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.5;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 25px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--primary-light);
            display: block;
        }

        .demo-section {
            padding: 80px 0;
            text-align: center;
            background-color: var(--light);
        }

        .demo-section h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 700;
        }

        .demo-section p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
            line-height: 1.5;
        }

        .demo-img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .contact {
            padding: 80px 0;
            background-color: white;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 700;
        }

        .contact-info p {
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 18px;
            line-height: 1.5;
        }

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

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-lightest);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 50px;
        }

        .contact-text h3 {
            font-size: 18px;
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .contact-text p, .contact-text a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 16px;
            line-height: 1.4;
        }

        .contact-text a:hover {
            color: var(--primary);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--primary-lightest);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary);
            font-weight: 500;
            font-family: 'Sora', sans-serif;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--primary-lighter);
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-lightest);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .btn-primary {
            background-color: var(--primary);
            width: 100%;
            font-size: 16px;
            padding: 14px;
        }

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

        footer {
            background-color: var(--secondary);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-col p {
            margin-bottom: 15px;
            opacity: 0.8;
        }

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

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

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-link:hover {
            background-color: var(--accent);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

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

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

            .navbar {
                flex-direction: column;
                height: auto;
                gap: 20px;
                padding: 15px 0;
            }

            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-grid {
                gap: 40px;
            }

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

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .story-strip {
                padding: 32px;
            }

            .marketplace-wrapper {
                gap: 32px;
            }

            .marketplace-orb {
                padding: 32px;
            }

            .countdown-timer {
                flex-wrap: wrap;
            }

            .step:not(:last-child)::after {
                display: none;
            }
            
            .contact-content {
                flex-direction: column;
            }

            .hero .btn-container {
                flex-direction: column;
                align-items: center;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .hero .btn {
                width: 100%;
            }
        }

        /* Initial language state */
        .pl-content {
            display: none;
        }

        .pl-content.active {
            display: block;
        }

        .en-content {
            display: none;
        }

        .en-content.active {
            display: block;
        }

        .uk-content {
            display: none;
        }

        .uk-content.active {
            display: block;
        }

        .de-content {
            display: none;
        }

        .de-content.active {
            display: block;
        }

        .fr-content {
            display: none;
        }

        .fr-content.active {
            display: block;
        }

        /* Special handling for navbar spans */
        .nav-links a .pl-content.active,
        .nav-links a .en-content.active,
        .nav-links a .uk-content.active,
        .nav-links a .de-content.active,
        .nav-links a .fr-content.active {
            display: inline;
        }

        .nav-links a .pl-content,
        .nav-links a .en-content,
        .nav-links a .uk-content,
        .nav-links a .de-content,
        .nav-links a .fr-content {
            display: none;
        }

        /* Language switcher dropdown */
        .language-switch {
            position: relative;
            display: flex;
            align-items: center;
        }

        .language-dropdown {
            display: flex;
            align-items: center;
            background: var(--light);
            border: 1px solid var(--primary-lighter);
            border-radius: 4px;
            padding: 6px 12px;
            cursor: pointer;
            gap: 8px;
            font-size: 14px;
            color: var(--secondary);
            transition: all 0.3s;
        }

        .language-dropdown:hover {
            border-color: var(--primary);
        }

        .language-dropdown span.fi {
            width: 24px;
            height: 16px;
            border-radius: 2px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .language-dropdown-content {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid var(--primary-lighter);
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 100;
            min-width: 150px;
            display: none;
            margin-top: 5px;
        }

        .language-dropdown-content.show {
            display: block;
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            cursor: pointer;
            transition: background 0.2s;
            border-bottom: 1px solid var(--primary-lightest);
        }

        .language-option:last-child {
            border-bottom: none;
        }

        .language-option:hover {
            background: var(--primary-lightest);
        }

        .language-option.active {
            background: var(--primary-lighter);
            font-weight: 500;
        }

        .language-option span.fi {
            width: 24px;
            height: 16px;
            border-radius: 2px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .language-name {
            font-weight: normal;
        }

        /* Specific for German & French language content */
        .de-content h2, .fr-content h2 {
            color: var(--secondary);
        }

        .de-content .btn-primary, .fr-content .btn-primary {
            background-color: var(--primary);
        }

        .de-content .btn-primary:hover, .fr-content .btn-primary:hover {
            background-color: var(--primary-dark);
        }

        /* Second CTA Section Styling */
        .register-cta {
            background-color: var(--light); /* Light background */
            padding: 60px 0; /* Vertical padding */
            text-align: center; /* Center align content */
        }

        .register-cta h2 {
            color: var(--secondary); /* Dark blue heading */
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 700;
        }

        .register-cta .cta-container {
            max-width: 700px; /* Limit width */
            margin: 0 auto; /* Center container */
        }

        .register-cta .cta-content p {
            color: var(--gray); /* Gray text */
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .register-cta .cta-content .verification-note { /* Increased specificity */
            font-size: 12px; /* Made font smaller */
            font-style: italic;
            color: var(--gray);
            margin-top: 20px; /* Added space above the note (now below button) */
        }

        .register-cta .btn-primary {
            display: inline-flex; /* Use flex for icon alignment */
            align-items: center;
            gap: 10px; /* Space between icon and text */
            padding: 14px 32px; /* Button padding */
            font-size: 16px;
            width: auto; /* Auto width based on content */
            background-color: var(--primary); /* Primary blue background */
            color: white;
            border-radius: 999px;
            box-shadow: 0 20px 36px rgba(9, 37, 107, 0.18);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .register-cta .btn-primary:hover {
            background-color: var(--primary-dark); /* Darker blue on hover */
            transform: translateY(-2px);
            box-shadow: 0 24px 40px rgba(9, 37, 107, 0.22);
        }

        .register-cta .btn-primary i {
            margin-right: 0; /* Remove default icon margin if any */
        }

        html {
            scroll-behavior: smooth;
        }
                                .cls-1 {
                                    fill: #09256b;
                                }
                                .cls-2 {
                                    fill: #194ff9;
                                }
        :root {
            --primary: #194FF9;
            --primary-light: #7595FB;
            --primary-lighter: #BACAFD;
            --primary-lightest: #E8EDFE;
            --secondary: #09256B;
            --secondary-light: #5C71A5;
            --secondary-lighter: #8596C2;
            --secondary-lightest: #AFBCDF;
            --secondary-dark: #071E56;
            --accent: #34c759;
            --accent-soft: rgba(52, 199, 89, 0.14);
            --light: #f8f9fa;
            --light-gradient: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f9f7ff 100%);
            --dark: #212529;
            --gray: #6c757d;
            --shadow-soft: 0 20px 40px rgba(16, 47, 147, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        h1, h2, h3, h4, h5, .logo, .btn, .nav-links a, .section-header h2 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

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

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            gap: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 40px;
            gap: 12px;
            color: var(--secondary);
        }

        .logo svg {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .language-switch {
            position: relative;
        }

        .language-dropdown {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid var(--primary-lightest);
            background-color: white;
            cursor: pointer;
            color: var(--secondary);
            font-weight: 600;
            transition: box-shadow 0.3s ease;
        }

        .language-dropdown:hover {
            box-shadow: 0 12px 24px rgba(9, 37, 107, 0.12);
        }

        .language-dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--primary-lightest);
            box-shadow: 0 15px 35px rgba(9, 37, 107, 0.15);
            padding: 12px 0;
            display: none;
            min-width: 210px;
            z-index: 10;
        }

        .language-dropdown-content.show {
            display: block;
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            cursor: pointer;
            color: var(--secondary);
            transition: background 0.2s ease, color 0.2s ease;
        }

        .language-option:hover, .language-option.active {
            background: var(--primary-lightest);
            color: var(--primary);
        }

        .hero {
            background: linear-gradient(140deg, rgba(25, 79, 249, 0.95) 0%, rgba(9, 37, 107, 0.92) 60%, rgba(9, 37, 107, 0.85) 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 60%),
                        radial-gradient(circle at 85% 20%, rgba(116, 152, 255, 0.2), transparent 65%),
                        radial-gradient(circle at 50% 80%, rgba(12, 37, 112, 0.6), transparent 70%);
            mix-blend-mode: screen;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.25;
            background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Cpath d='M60 0v120M0 60h120'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .hero-copy {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 4.6vw, 3.5rem);
            line-height: 1.1;
        }

        .hero-subheadlines {
            display: grid;
            gap: 14px;
            font-size: 1.05rem;
        }

        .hero-subheadlines p {
            margin: 0;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .hero-subheadlines strong {
            font-weight: 600;
            color: white;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 0.4px;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 18px 30px rgba(25, 79, 249, 0.25);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 22px 36px rgba(9, 37, 107, 0.28);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: white;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
            box-shadow: 0 16px 28px rgba(9, 37, 107, 0.25);
        }

        .hero-visual {
            display: grid;
            gap: 18px;
        }

        .hero-visual-card {
            padding: 24px;
            border-radius: 18px;
            background: rgba(9, 37, 107, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 35px rgba(9, 37, 107, 0.35);
            backdrop-filter: blur(8px);
        }

        .hero-visual-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .hero-visual-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.78);
        }

        .section {
            padding: 110px 0;
        }

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

        .section-header h2 {
            font-size: clamp(2rem, 3.8vw, 2.8rem);
            color: var(--secondary);
            margin-bottom: 18px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 780px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(25, 79, 249, 0.08);
            color: var(--secondary);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .benefit-card {
            background: white;
            border-radius: 22px;
            padding: 32px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 15% 20%, rgba(25, 79, 249, 0.08), transparent 55%),
                        radial-gradient(circle at 90% 80%, rgba(9, 37, 107, 0.06), transparent 60%);
        }

        .benefit-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: var(--primary-lightest);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 14px;
            color: var(--secondary);
        }

        .benefit-card p {
            color: var(--gray);
        }

        .cta-section {
            background: var(--secondary);
            color: white;
            border-radius: 28px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(9, 37, 107, 0.18);
            margin-top: 40px;
        }

        .cta-section h2 {
            font-size: 2.3rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.85);
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .cta-section .btn-outline {
            border-color: rgba(255, 255, 255, 0.45);
        }

        .workflow-section {
            background: white;
            border-radius: 28px;
            padding: 60px;
            box-shadow: var(--shadow-soft);
        }

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

        .workflow-step {
            background: var(--light-gradient);
            border-radius: 18px;
            padding: 28px;
            position: relative;
            overflow: hidden;
        }

        .workflow-step h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .faq-section {
            margin-top: 90px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .faq-item {
            background: white;
            border-radius: 18px;
            padding: 28px;
            box-shadow: var(--shadow-soft);
        }

        .faq-item h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        footer {
            background-color: var(--secondary);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-col {
            flex: 1;
            min-width: 240px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo svg {
            width: 140px;
            height: auto;
        }

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

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

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }

        .nav-links .lang-content {
            display: inline;
        }

        @media (max-width: 992px) {
            .cta-section, .workflow-section {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .language-switch {
                align-self: stretch;
            }

            .hero {
                padding: 100px 0 80px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-actions {
                flex-direction: column;
            }
        }
                                    .cls-1 { fill: #09256b; }
                                    .cls-2 { fill: #194ff9; }
        :root {
            --primary: #194FF9;
            --primary-light: #7595FB;
            --primary-lighter: #BACAFD;
            --primary-lightest: #E8EDFE;
            --secondary: #09256B;
            --secondary-light: #5C71A5;
            --secondary-lighter: #8596C2;
            --secondary-lightest: #AFBCDF;
            --secondary-dark: #071E56;
            --accent: #34c759;
            --accent-soft: rgba(52, 199, 89, 0.14);
            --light: #f8f9fa;
            --light-gradient: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f9f7ff 100%);
            --dark: #212529;
            --gray: #6c757d;
            --shadow-soft: 0 20px 40px rgba(16, 47, 147, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        h1, h2, h3, h4, h5, .logo, .btn, .nav-links a, .section-header h2 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

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

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            gap: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 40px;
            gap: 12px;
            color: var(--secondary);
        }

        .logo svg {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .language-switch {
            position: relative;
        }

        .language-dropdown {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid var(--primary-lightest);
            background-color: white;
            cursor: pointer;
            color: var(--secondary);
            font-weight: 600;
            transition: box-shadow 0.3s ease;
        }

        .language-dropdown:hover {
            box-shadow: 0 12px 24px rgba(9, 37, 107, 0.12);
        }

        .language-dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--primary-lightest);
            box-shadow: 0 15px 35px rgba(9, 37, 107, 0.15);
            padding: 12px 0;
            display: none;
            min-width: 210px;
            z-index: 10;
        }

        .language-dropdown-content.show {
            display: block;
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            cursor: pointer;
            color: var(--secondary);
            transition: background 0.2s ease, color 0.2s ease;
        }

        .language-option:hover, .language-option.active {
            background: var(--primary-lightest);
            color: var(--primary);
        }

        .hero {
            background: linear-gradient(140deg, rgba(25, 79, 249, 0.95) 0%, rgba(9, 37, 107, 0.92) 60%, rgba(9, 37, 107, 0.85) 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 60%),
                        radial-gradient(circle at 85% 20%, rgba(116, 152, 255, 0.2), transparent 65%),
                        radial-gradient(circle at 50% 80%, rgba(12, 37, 112, 0.6), transparent 70%);
            mix-blend-mode: screen;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.25;
            background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Cpath d='M60 0v120M0 60h120'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .hero-copy {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 4.6vw, 3.5rem);
            line-height: 1.1;
        }

        .hero-subheadlines {
            display: grid;
            gap: 14px;
            font-size: 1.05rem;
        }

        .hero-subheadlines p {
            margin: 0;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .hero-subheadlines strong {
            font-weight: 600;
            color: white;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 0.4px;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 18px 30px rgba(25, 79, 249, 0.25);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 22px 36px rgba(9, 37, 107, 0.28);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: white;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
            box-shadow: 0 16px 28px rgba(9, 37, 107, 0.25);
        }

        .hero-visual {
            display: grid;
            gap: 18px;
        }

        .hero-visual-card {
            padding: 24px;
            border-radius: 18px;
            background: rgba(9, 37, 107, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 35px rgba(9, 37, 107, 0.35);
            backdrop-filter: blur(8px);
        }

        .hero-visual-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .hero-visual-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.78);
        }

        .section {
            padding: 110px 0;
        }

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

        .section-header h2 {
            font-size: clamp(2rem, 3.8vw, 2.8rem);
            color: var(--secondary);
            margin-bottom: 18px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 780px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(25, 79, 249, 0.08);
            color: var(--secondary);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .benefit-card {
            background: white;
            border-radius: 22px;
            padding: 32px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 15% 20%, rgba(25, 79, 249, 0.08), transparent 55%),
                        radial-gradient(circle at 90% 80%, rgba(9, 37, 107, 0.06), transparent 60%);
        }

        .benefit-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: var(--primary-lightest);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 14px;
            color: var(--secondary);
        }

        .benefit-card p {
            color: var(--gray);
        }

        .cta-section {
            background: var(--secondary);
            color: white;
            border-radius: 28px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(9, 37, 107, 0.18);
            margin-top: 40px;
        }

        .cta-section h2 {
            font-size: 2.3rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.85);
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .cta-section .btn-outline {
            border-color: rgba(255, 255, 255, 0.45);
        }

        .workflow-section {
            background: white;
            border-radius: 28px;
            padding: 60px;
            box-shadow: var(--shadow-soft);
        }

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

        .workflow-step {
            background: var(--light-gradient);
            border-radius: 18px;
            padding: 28px;
            position: relative;
            overflow: hidden;
        }

        .workflow-step h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .faq-section {
            margin-top: 90px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .faq-item {
            background: white;
            border-radius: 18px;
            padding: 28px;
            box-shadow: var(--shadow-soft);
        }

        .faq-item h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        footer {
            background-color: var(--secondary);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-col {
            flex: 1;
            min-width: 240px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo svg {
            width: 140px;
            height: auto;
        }

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

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

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }

        .nav-links .lang-content {
            display: inline;
        }

        @media (max-width: 992px) {
            .cta-section, .workflow-section {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .language-switch {
                align-self: stretch;
            }

            .hero {
                padding: 100px 0 80px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-actions {
                flex-direction: column;
            }
        }
                                    .cls-1 { fill: #09256b; }
                                    .cls-2 { fill: #194ff9; }
        :root {
            --primary: #194FF9;
            --primary-light: #7595FB;
            --primary-lighter: #BACAFD;
            --primary-lightest: #E8EDFE;
            --secondary: #09256B;
            --secondary-light: #5C71A5;
            --secondary-lighter: #8596C2;
            --secondary-lightest: #AFBCDF;
            --secondary-dark: #071E56;
            --accent: #34c759;
            --accent-soft: rgba(52, 199, 89, 0.14);
            --light: #f8f9fa;
            --light-gradient: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f9f7ff 100%);
            --dark: #212529;
            --gray: #6c757d;
            --shadow-soft: 0 20px 40px rgba(16, 47, 147, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        h1, h2, h3, h4, h5, .logo, .btn, .nav-links a, .section-header h2 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

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

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            gap: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 40px;
            gap: 12px;
            color: var(--secondary);
        }

        .logo svg {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .language-switch {
            position: relative;
        }

        .language-dropdown {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid var(--primary-lightest);
            background-color: white;
            cursor: pointer;
            color: var(--secondary);
            font-weight: 600;
            transition: box-shadow 0.3s ease;
        }

        .language-dropdown:hover {
            box-shadow: 0 12px 24px rgba(9, 37, 107, 0.12);
        }

        .language-dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--primary-lightest);
            box-shadow: 0 15px 35px rgba(9, 37, 107, 0.15);
            padding: 12px 0;
            display: none;
            min-width: 210px;
            z-index: 10;
        }

        .language-dropdown-content.show {
            display: block;
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            cursor: pointer;
            color: var(--secondary);
            transition: background 0.2s ease, color 0.2s ease;
        }

        .language-option:hover, .language-option.active {
            background: var(--primary-lightest);
            color: var(--primary);
        }

        .hero {
            background: linear-gradient(140deg, rgba(25, 79, 249, 0.95) 0%, rgba(9, 37, 107, 0.92) 60%, rgba(9, 37, 107, 0.85) 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 60%),
                        radial-gradient(circle at 85% 20%, rgba(116, 152, 255, 0.2), transparent 65%),
                        radial-gradient(circle at 50% 80%, rgba(12, 37, 112, 0.6), transparent 70%);
            mix-blend-mode: screen;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.25;
            background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Cpath d='M60 0v120M0 60h120'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .hero-copy {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 4.6vw, 3.5rem);
            line-height: 1.1;
        }

        .hero-subheadlines {
            display: grid;
            gap: 14px;
            font-size: 1.05rem;
        }

        .hero-subheadlines p {
            margin: 0;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .hero-subheadlines strong {
            font-weight: 600;
            color: white;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 0.4px;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 18px 30px rgba(25, 79, 249, 0.25);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 22px 36px rgba(9, 37, 107, 0.28);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: white;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
            box-shadow: 0 16px 28px rgba(9, 37, 107, 0.25);
        }

        .hero-visual {
            display: grid;
            gap: 18px;
        }

        .hero-visual-card {
            padding: 24px;
            border-radius: 18px;
            background: rgba(9, 37, 107, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 35px rgba(9, 37, 107, 0.35);
            backdrop-filter: blur(8px);
        }

        .hero-visual-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .hero-visual-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.78);
        }

        .section {
            padding: 110px 0;
        }

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

        .section-header h2 {
            font-size: clamp(2rem, 3.8vw, 2.8rem);
            color: var(--secondary);
            margin-bottom: 18px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 780px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(25, 79, 249, 0.08);
            color: var(--secondary);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .benefit-card {
            background: white;
            border-radius: 22px;
            padding: 32px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 15% 20%, rgba(25, 79, 249, 0.08), transparent 55%),
                        radial-gradient(circle at 90% 80%, rgba(9, 37, 107, 0.06), transparent 60%);
        }

        .benefit-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: var(--primary-lightest);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 14px;
            color: var(--secondary);
        }

        .benefit-card p {
            color: var(--gray);
        }

        .cta-section {
            background: var(--secondary);
            color: white;
            border-radius: 28px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(9, 37, 107, 0.18);
            margin-top: 40px;
        }

        .cta-section h2 {
            font-size: 2.3rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.85);
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .cta-section .btn-outline {
            border-color: rgba(255, 255, 255, 0.45);
        }

        .workflow-section {
            background: white;
            border-radius: 28px;
            padding: 60px;
            box-shadow: var(--shadow-soft);
        }

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

        .workflow-step {
            background: var(--light-gradient);
            border-radius: 18px;
            padding: 28px;
            position: relative;
            overflow: hidden;
        }

        .workflow-step h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .faq-section {
            margin-top: 90px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .faq-item {
            background: white;
            border-radius: 18px;
            padding: 28px;
            box-shadow: var(--shadow-soft);
        }

        .faq-item h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        footer {
            background-color: var(--secondary);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-col {
            flex: 1;
            min-width: 240px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo svg {
            width: 140px;
            height: auto;
        }

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

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

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }

        .nav-links .lang-content {
            display: inline;
        }

        @media (max-width: 992px) {
            .cta-section, .workflow-section {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .language-switch {
                align-self: stretch;
            }

            .hero {
                padding: 100px 0 80px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-actions {
                flex-direction: column;
            }
        }
                                    .cls-1 { fill: #09256b; }
                                    .cls-2 { fill: #194ff9; }
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@400;500;600;700&display=swap');

        :root {
            /* Primary blue palette */
            --primary: #194FF9;
            --primary-light: #7595FB;
            --primary-lighter: #BACAFD;
            --primary-lightest: #E8EDFE;
            --primary-dark: #0F32A1;

            /* Secondary dark blue palette */
            --secondary: #09256B;
            --secondary-light: #5C71A5;
            --secondary-lighter: #8596C2;
            --secondary-lightest: #AFBCDF;
            --secondary-dark: #071E56;

            /* Additional colors from the screenshot */
            --accent: #34c759;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        h1, h2, h3, h4, h5, .logo, .btn, .nav-links a, .section-header h2, .countdown-item span {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

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

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 40px;
        }

        .logo svg {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            height: 100%;
        }

        .nav-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
            z-index: 1;
            animation: scrollBackground 30s linear infinite;
        }

        @keyframes scrollBackground {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 100% 100%;
            }
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 3rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: white;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-size: 14px;
        }

        .btn:hover {
            background-color: #28a745;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            margin-left: 15px;
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Content styling */
        .content-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .content-title {
            font-size: 2.2rem;
            color: var(--secondary);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        section h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        article h3 {
            font-size: 1.4rem;
            color: var(--secondary-dark);
            margin: 30px 0 15px;
            font-weight: 500;
        }

        article {
            margin-bottom: 30px;
        }

        p {
            margin-bottom: 15px;
            color: var(--dark);
        }

        /* Convert bullet points to paragraphs */
        article ul {
            list-style: none;
            margin-left: 0;
        }

        article li {
            margin-bottom: 10px;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

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

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

            .navbar {
                flex-direction: column;
                height: auto;
                gap: 20px;
                padding: 15px 0;
            }

            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .content-title {
                font-size: 1.8rem;
            }

            section h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }
                                .cls-1 {
                                    fill: #09256b;
                                }
                                .cls-2 {
                                    fill: #194ff9;
                                }
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@400;500;600;700&display=swap');

        :root {
            /* Primary blue palette */
            --primary: #194FF9;
            --primary-light: #7595FB;
            --primary-lighter: #BACAFD;
            --primary-lightest: #E8EDFE;
            --primary-dark: #0F32A1;

            /* Secondary dark blue palette */
            --secondary: #09256B;
            --secondary-light: #5C71A5;
            --secondary-lighter: #8596C2;
            --secondary-lightest: #AFBCDF;
            --secondary-dark: #071E56;

            /* Additional colors from the screenshot */
            --accent: #34c759;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        h1, h2, h3, h4, h5, .logo, .btn, .nav-links a, .section-header h2, .countdown-item span {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

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

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 40px;
        }

        .logo svg {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            height: 100%;
        }

        .nav-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
            z-index: 1;
            animation: scrollBackground 30s linear infinite;
        }

        @keyframes scrollBackground {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 100% 100%;
            }
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 3rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: white;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-size: 14px;
        }

        .btn:hover {
            background-color: #28a745;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            margin-left: 15px;
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Content styling */
        .content-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .content-title {
            font-size: 2.2rem;
            color: var(--secondary);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        section h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        article h3 {
            font-size: 1.4rem;
            color: var(--secondary-dark);
            margin: 30px 0 15px;
            font-weight: 500;
        }

        article {
            margin-bottom: 30px;
        }

        p {
            margin-bottom: 15px;
            color: var(--dark);
        }

        /* Convert bullet points to paragraphs */
        article ul {
            list-style: none;
            margin-left: 0;
        }

        article li {
            margin-bottom: 10px;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

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

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

            .navbar {
                flex-direction: column;
                height: auto;
                gap: 20px;
                padding: 15px 0;
            }

            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .content-title {
                font-size: 1.8rem;
            }

            section h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }
                                .cls-1 {
                                    fill: #09256b;
                                }
                                .cls-2 {
                                    fill: #194ff9;
                                }
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 12px 22px;
    font-size: 0.9rem;
    box-shadow: 0 12px 24px rgba(52, 199, 89, 0.2);
}

.navbar-cta:hover {
    box-shadow: 0 16px 28px rgba(52, 199, 89, 0.25);
}

.navbar-cta .lang-content {
    display: none;
}

.navbar-cta .lang-content.active {
    display: inline;
}

.nav-links a .lang-content {
    display: none;
}

.nav-links a .lang-content.active {
    display: inline;
}

.navbar-actions .language-switch {
    position: relative;
}
@media (max-width: 768px) {
    .navbar-actions {
        justify-content: center;
    }

    .navbar-cta {
        width: 100%;
        justify-content: center;
    }
}
