* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Qualy Neue';
    src: url('/assets/fonts/qualy-neue-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

.hero-content h1,
.hero-content .hero-title,
.info-section h2,
.payslip-content h2,
.contact-title,
.faq-title {
    font-family: 'Qualy Neue', sans-serif;
}

.contact-title {
    color: #3F3D56;
    font-family: "Qualy Neue";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    /* 150% */
}


body {
    font-family: var(--font-poppins);
    background-color: #f8f9fa;
    color: #333;
}

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

/* ============ HERO SECTION ============ */


.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
    color: #3F3D56B2;
    font-size: 20px;
    margin-top: 16px;
}


.features-list p {
    color: #3F3D56;
    font-size: 24px;
    line-height: 1.8;
}


.hero-image {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.banner-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-width: 75%;
    height: auto;
    position: relative;
    left: 150px;
}

/* ============ INFO SECTION ============ */
.info-section {
    text-align: left; /* Changed from center to left */
    margin-bottom: 20px;
    margin-top: 40px;
    max-width: 1200px; /* Optional: constrain width */
    margin-left: auto;
    margin-right: auto;
}

.info-section h2 {
    color: #3F3D56;
    font-family: "Qualy Neue";
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 20px;
    text-align: left;
}

.info-section p {
    color: rgba(63, 61, 86, 0.70);
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    margin-bottom: 30px; /* Added spacing before image */
}

.info-image-container {
    border-radius: 16px;
    padding: 40px;
    display: block; /* Changed from inline-block to block */
    text-align: center; /* Center the image itself */
}

.info-image-container img {
    max-width: 500px;
    height: auto;
    display: inline-block; /* Ensures image respects text-align: center */
}

/* ============ PAYSLIP SECTION ============ */
.payslip-section {
    background: linear-gradient(135deg, #e3f2ff 0%, #f5f5f5 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 190px;
    justify-content: space-around;
}

.taxation {
    background: none;
}

.payslip-image {
    flex: 0 0 200px;
}

.payslip-image img {
    height: 300px;
}

.payslip-content {
    flex: 1;
}

.payslip-content h2 {
    color: #3F3D56;
    font-family: "Qualy Neue";
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 20px;
    /* 150% */
}

.payslip-content h3 {
    font-size: 24px;
}

.payslip-content p {
    font-size: 20px;
    color: #3F3D56B2;
    line-height: 1.6;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: linear-gradient(135deg, rgba(147, 169, 187, 0.1) 0%, rgba(147, 169, 187, 0.05) 100%);
    padding: 30px 24px;
    position: relative;
    /* top: 60px; */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
    position: relative;
    left: 25px;
}

.contact-content {
    flex: 1;
    max-width: 500px;
}

.contact-title {
    color: #3F3D56;
    font-family: "Qualy Neue";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 30px;
    /* 150% */
}

.contact-phone {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-cornflowerblue-100);
    margin-bottom: 20px;
}

.contact-email {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-cornflowerblue-100);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #2296f3;
}

.contact-image {
    flex: 1;
    max-width: 500px;
    height: 400px;
    object-fit: contain;
}

.phone-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #2296f3;
    text-decoration: underline;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    padding: 0px 24px;
}

.faq-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 35px;
    text-align: left;
    position: relative;
    top: 15px;
}

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

.faq-item {
    margin-bottom: 20px;
}

.faq-header {
    background-color: rgba(34, 150, 243, 0.1);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: rgba(34, 150, 243, 0.15);
}

.faq-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-cornflowerblue-100);
    min-width: 50px;
}

.faq-question {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-left: 30px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: var(--color-white);
    padding: 30px 40px 30px 120px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray);
    display: none;
    border-radius: 0 0 8px 8px;
}

.faq-answer.active {
    display: block;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: white;
    padding: 18px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo {
    height: 40px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: #2296f3;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============ UTILITIES ============ */
/* .custom-container {
    width: 99vw;
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
    padding: 60px 5%;
} */

.custom-font {
    font-size: 14px;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Tablet Styles (768px - 1024px) */
/* @media (max-width: 1024px) {
    .hero-section {
        padding: 40px 50px;
        max-height: none;
        min-height: 320px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .features-list p {
        font-size: 15px;
    }

    .banner-image img {
        max-width: 70%;
        left: 100px;
    }
} */

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        max-height: none;
        min-height: auto;
        position: relative;
        /* top: 20px; */
    }

    .hero-content {
        max-width: 100%;
        /* margin-bottom: 30px; */
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .features-list {
        margin-bottom: 25px;
    }

    .features-list p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        text-align: center;
    }



    .hero-image {
        margin-top: 30px;
    }

    .banner-image {
        width: 100%;
        margin-top: 20px;
    }

    .banner-image img {
        max-width: 90%;
        left: 0;
        position: static;
    }

    .payslip-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .info-image-container img {
        max-width: 100%;
    }

    .login-btn {
        border: 2px solid var(--color-cornflowerblue-200);
        border-radius: 8px;
        padding: 6px 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: transparent;
        flex-shrink: 0;
        text-decoration: none;
        color: var(--color-cornflowerblue-100);
        font-weight: 600;
        font-size: 15px;
        white-space: nowrap;
        width: 100px;
        position: relative;
        bottom: 10px;
        right: 8px;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .features-list p {
        font-size: 14px;
        text-align: center;
    }

    .banner-image img {
        max-width: 100%;
    }

    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
}

/* Extra Small Devices (up to 360px) */
@media (max-width: 360px) {
    .hero-section {
        padding: 20px 12px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .features-list p {
        font-size: 13px;
    }
}

/* CTA Buttons */