/* --- CSS Reset & Variables --- */
:root {
    --primary-teal: #00a8b5;
    --dark-blue: #0f2027;
    --light-bg: #f4f7f6;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
}

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

body {
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

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

.text-center {
    text-align: center;
}

/* --- Typography & Buttons --- */
h1, h2, h3, h4 { color: var(--dark-blue); }

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

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

.btn-primary:hover {
    background-color: #008c96;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* --- Navigation --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.logo span { color: var(--dark-blue); }

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 25px;
    font-weight: 500;
}

/* --- Hero Section & Form --- */
.hero {
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1a20 0%, #162e37 100%);
    padding: 80px 0;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-checklist {
    list-style: none;
    font-size: 1.2rem;
}

.hero-checklist li {
    margin-bottom: 10px;
}


.hero-img {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 168, 181, 0.2); /* Subtle teal glow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02); /* Interactive feel */
}

.hero-form-card {
    background: rgba(15, 32, 39, 0.8); /* Semi-transparent */
    backdrop-filter: blur(15px); /* The "Glass" effect */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    border-radius: 16px; /* Smoother corners */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.form-header {
    background: var(--primary-teal);
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.form-header h2 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.apply-form {
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    background: rgba(255, 255, 255, 0.05); /* Soft dark look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    color: var(--white);
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 168, 181, 0.3);
}
.form-group input::placeholder {
    color: #888;
}

/* --- About Section Grid --- */

.about {
    padding: 80px 0;
    background: var(--white);
}

.about-container {
    display: flex;
    gap: 40px;
}

.about-title h2 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about-grid {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-item {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 181, 0.1);
    border-color: var(--primary-teal);
}

.about-item .number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-teal);
    background: rgba(0, 168, 181, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 5px;
}
/* --- Steps Section --- */

.steps-section h2 { color: var(--white); }


/* --- High-Trust Step Cards --- */
.steps-section {
    background: linear-gradient(180deg, #0f2027 0%, #0a1316 100%); /* Deep premium gradient */
    padding: 100px 0;
}

.steps-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: var(--primary-teal);
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 168, 181, 0.4); /* Glowing effect */
    margin-bottom: 25px;
}

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

.step p {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.5;
}

--- Why Choose Us --- */
/* --- High-End Benefit Cards --- */
.why-us {
    padding: 100px 0;
    background-color: #f8fafb; /* Lighter, cleaner background */
}

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

.benefit-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03); /* Soft border instead of top-heavy teal */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 168, 181, 0.12);
    border-color: var(--primary-teal);
}

/* Subtle background icon/number decoration */
.benefit-card::after {
    content: '✓';
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 5rem;
    color: rgba(0, 168, 181, 0.03);
    font-weight: 900;
}

.benefit-card h4 {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
/* --- Footer --- */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer h4 {
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.legal-warning {
    font-size: 0.85rem;
    color: #aaa;
}

.legal-warning p {
    margin-bottom: 10px;
}
/* --- Calculator Styles --- */
/* --- Calculator Section --- */
.calculator-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.calc-container {
    background: #f8fafb;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 168, 181, 0.1);
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.calc-inputs {
    flex: 1.2;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.input-group input {
    width: 100%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(0, 168, 181, 0.1);
    outline: none;
}

.calc-result {
    flex: 1;
    background: var(--dark-blue);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.monthly-amount {
    font-size: 3rem; 
    font-weight: 700;
    color: var(--primary-teal);
    margin: 10px 0;
    position: relative;
    z-index: 2;
}

.calc-result p {
    color: #94a3b8;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}


/* --- FAQ Accordion Animation --- */
/* --- Premium FAQ Accordion --- */
.faq-section {
    padding: 100px 0;
    background-color: #f8fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 10px 20px rgba(0, 168, 181, 0.05);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.05rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(0, 168, 181, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Icon rotation for active state */
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-teal);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before { width: 12px; height: 2px; } /* Horizontal */
.faq-icon::after { width: 2px; height: 12px; }  /* Vertical */

/* Active State Styles */
.faq-item.active {
    border-color: var(--primary-teal);
    box-shadow: 0 15px 30px rgba(0, 168, 181, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns the + into an x */
}
/* --- Keep all your existing CSS from previous turn --- */
:root {
    --primary: #00a8b5;
    --dark: #0f2027;
    --white: #ffffff;
    --light: #f4f7f6;
}

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

/* ... (Your existing Navbar, Hero, and Form styles) ... */

/* New Style for Hero Image (Update 1) */
.hero-image-wrap { margin-top: 30px; border-radius: 15px; overflow: hidden; }
.hero-img { width: 100%; max-width: 500px; opacity: 0.9; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.selling-points { color: var(--primary); font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; }



.compliance-box {
    background: rgba(255, 255, 255, 0.03); /* Subtle dark contrast */
    border: 1px solid rgba(0, 168, 181, 0.2); /* Soft teal border */
    border-left: 4px solid var(--primary-teal);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compliance-box h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Adding an icon before the title via CSS */
.compliance-box h3::before {
    content: '📋'; /* Or a FontAwesome icon like \f05a */
    font-size: 1.2rem;
}

.security-labels {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #026d58; /* High-trust bright teal */
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}

.apply-button-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.btn-apply {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #007a82 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px; /* Modern pill shape */
    box-shadow: 0 10px 25px rgba(0, 168, 181, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-apply:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 168, 181, 0.5);
    background: linear-gradient(135deg, #00c2d1 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.btn-apply:active {
    transform: translateY(-2px);
}

/* Floating Line Button Styles */
.line-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #00b900; /* Official Line Green */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s, background-color 0.3s;
}

.line-float:hover {
    background-color: #009900;
    transform: translateY(-5px);
    color: white;
}

.line-float img {
    width: 30px;
    height: 30px;
}
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 95px; /* Adjust this height based on your design preference */
    width: auto;  /* Maintains aspect ratio */
    display: block;
    object-fit: contain;
}

/* --- Mobile Menu Styles --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    margin: 4px 0;
    transition: 0.4s;
}
/* --- Footer Legal Links Styles --- */
/* --- Premium Institutional Footer --- */
.footer {
    background-color: #0a1316; /* Deepest blue/black */
    padding: 80px 0 40px;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-trust-seals {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-trust-seals img {
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.6;
    transition: 0.3s;
}

.footer-trust-seals img:hover {
    filter: none;
    opacity: 1;
}

.reg-number {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary-teal);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.legal-warning {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #64748b;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

    .policy-section { 
        padding: 100px 0; 
        background: linear-gradient(180deg, #f8fafb 0%, #e2e8f0 100%); 
    }

    .policy-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .policy-header h1 {
        font-size: 3rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--dark-blue), var(--primary-teal));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
    }

    .last-updated {
        color: var(--primary-teal);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
    }

    .policy-content { 
        background: var(--white); 
        padding: 60px; 
        border-radius: 24px; 
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 168, 181, 0.1);
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-content h2 { 
        color: var(--dark-blue); 
        font-size: 1.5rem; 
        margin-top: 40px; 
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Professional accent line for headings */
    .policy-content h2::before {
        content: '';
        width: 4px;
        height: 24px;
        background: var(--primary-teal);
        border-radius: 2px;
    }

    .policy-content p, .policy-content li { 
        color: var(--text-muted); 
        line-height: 1.8; 
        font-size: 1rem;
    }

    .policy-content ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .policy-content li {
        margin-bottom: 10px;
    }

    .return-home {
        margin-top: 50px;
        text-align: center;
    }

    .btn-outline {
        display: inline-block;
        padding: 12px 30px;
        border: 2px solid var(--primary-teal);
        color: var(--primary-teal);
        text-decoration: none;
        font-weight: 700;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .btn-outline:hover {
        background: var(--primary-teal);
        color: var(--white);
        transform: translateY(-3px);
    }

    .footer-links a[href="privacy-en.html"] {
    color: var(--primary-teal) !important;
    border-bottom: 1px solid var(--primary-teal);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .line-float {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
        font-size: 1.2rem;
    }
    .line-float img {
        width: 25px;
        height: 25px;
    }
        .logo-img {
        height: 40px;
    }
        .menu-toggle {
        display: flex; /* Show on mobile */
        z-index: 1001;
    }

    .about {
        background: linear-gradient(180deg, #ffffff 0%, #f9fbfb 100%);
        padding: 60px 0; /* Slightly reduced vertical padding */
    }

    .about-container {
        flex-direction: column;
        gap: 20px;
    }

    .about-title h2 {
        font-size: 2.2rem; /* Scaled down for mobile screens */
        text-align: center;
        margin-bottom: 10px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Grid on mobile */
        gap: 12px; /* Tighter gap for small screens */
    }

    .about-item {
        padding: 20px 15px; /* Compact padding */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center-aligned for a symmetric look */
        text-align: center;
    }

    .about-item h3 {
        font-size: 0.95rem; /* Smaller headings to prevent text wrapping */
        margin-bottom: 8px;
    }

    .about-item p {
        font-size: 0.75rem; /* readable but compact */
        line-height: 1.4;
    }

    .about-item .number {
        font-size: 0.8rem; /* Use the "Pill" style from Step 1 */
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .nav-links {
        position: fixed;
        left: -100%; /* Hide off-screen */
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0; /* Slide in */
    }

    .nav-links a {
        margin: 15px 0;
        display: block;
    }
        .calc-container { flex-direction: column; }

        .btn-apply {
        width: 90%; /* Larger tap target for mobile */
        text-align: center;
        padding: 16px 20px;
    }

        .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-trust-seals {
        flex-direction: column;
        gap: 20px;
    }
    .reg-number {
        border-left: none;
        padding-left: 0;
    }

    .policy-content { padding: 30px; }
        .policy-header h1 { font-size: 2.2rem; }
}


/* --- Mobile Menu & Responsive Fix --- */
@media (max-width: 900px) {
    .hero-container, .about-container, .steps-flex, .calc-container { 
        flex-direction: column; 
    }
    .hero-content h1 { font-size: 2.2rem; text-align: center; }
    .hero-form-card { margin: 0 auto; }
    
    .menu-toggle { 
        display: flex; 
        flex-direction: column; 
        cursor: pointer; 
    }
    .bar { width: 25px; height: 3px; background: var(--dark-blue); margin: 4px 0; }

    .nav-links {
        position: fixed; 
        left: -100%; 
        top: 80px;
        flex-direction: column; 
        background: var(--white);
        width: 100%; 
        text-align: center; 
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 1001; /* Ensure it stays above everything */
        display: flex; /* Required for the layout */
    }
  .steps-flex::before {
        content: '';
        position: absolute;
        top: 65px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 168, 181, 0.3), transparent);
        z-index: -1;
    }
        .calc-container {
        flex-direction: column; /* Stacks inputs on top of results */
        padding: 25px;
        gap: 30px;
    }

    .calc-inputs, .calc-result {
        flex: none;
        width: 100%;
    }

    .monthly-amount {
        font-size: 2.5rem; /* Slightly smaller for mobile */
    }
    
    .calc-result {
        padding: 35px 25px;
    }
 
    .nav-links.active { 
        left: 0 !important; 
    }
    
    .nav-links a { 
        margin: 15px 0; 
        display: block; 
        font-size: 1.1rem;
    }
    .logo-img { 
        height: 85px; /* Increased from 50px for mobile */
        width: auto;
        transition: height 0.3s ease; /* Makes the transition smooth */
    }
    .footer-bottom-links a {
        display: inline-block;
        margin: 5px 10px;
    }
    .footer-bottom-links .separator {
        display: none; /* Hide separator on mobile for better stacking */
    }
}