:root {
    --blue: #2f4a99;
    --blue-dark: #17336f;
    --blue-bright: #1267df;
    --gold: #e5ad32;
    --dark: #05070b;
    --anthracite: #111827;
    --text: #1f2937;
    --muted: #667085;
    --white: #ffffff;
    --border: rgba(17, 24, 39, 0.12);
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    --radius: 18px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
}

.header-container {
    width: min(100%, var(--container));
    min-height: 96px;
    height: auto;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-img {
    display: block;
    width: auto;
    height: 86px;
    max-height: 100px;
    object-fit: contain;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    border: 0;
    background: transparent;
    padding: 22px 0;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-arrow,
.mobile-dropdown.is-open .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 290px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 24, 39, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: 0.2s ease;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.dropdown-menu a:hover {
    background: #f3f6ff;
    color: var(--blue);
}

.header-cta {
    flex-shrink: 0;
    padding: 12px 25px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(47, 74, 153, 0.25);
    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: #111827;
    transition: 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* FAQ Section */

.faq-section {
    background: #f5f8fc;
    padding: 18px 0 104px;
}

.faq-container {
    width: min(100% - 40px, 940px);
    margin: 0 auto;
}

.faq-heading {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 13px;
    border: 1px solid #dce4f0;
    border-radius: 999px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #101a3a;
}

.faq-badge span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d8a132;
}

.faq-heading h1 {
    margin: 0 0 16px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.055em;
    color: #101a3a;
}

.faq-heading p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    color: #687894;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #dbe3ee;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.045);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 66px;
    padding: 0 24px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
    color: #17213b;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: #2f4a99;
}

.faq-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border-radius: 999px;
    background: #f5f8fc;
    position: relative;
    transition: background 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: #8ea0bd;
    transition: transform 0.22s ease, background 0.22s ease;
}

.faq-icon::before {
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
    background: #e9efff;
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
    background: #2f4a99;
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: #687894;
}

.faq-contact-box {
    margin-top: 56px;
    padding: 38px 32px 36px;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.025);
}

.faq-contact-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #e9efff;
    color: #2f4a99;
}

.faq-contact-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-contact-box h2 {
    margin: 0 0 13px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.02em;
    color: #101a3a;
}

.faq-contact-box p {
    max-width: 470px;
    margin: 0 auto 25px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    color: #687894;
}

.faq-contact-button {
    min-width: 190px;
    height: 45px;
    padding: 0 26px;
    border-radius: 7px;
    background: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq-contact-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: #14244b;
    color: #ffffff;
    padding: 56px 0 34px;
}

.footer-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.footer-description {
    max-width: 430px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 400;
    text-align: right;
    color: rgba(255, 255, 255, 0.58);
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 70px 0 56px;
    background: rgba(255, 255, 255, 0.11);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 0.8fr;
    gap: 84px;
}

.footer-column h3 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-title-line {
    display: block;
    width: 28px;
    height: 3px;
    margin: 23px 0 28px;
    border-radius: 999px;
    background: #d8a132;
}

.footer-contact-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: #d8a132;
}

.footer-contact-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-list a,
.footer-contact-list address {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social {
    margin-top: 42px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.52);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #3957b4;
    color: #ffffff;
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 74px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.42);
}



/* Responsive */
@media (max-width: 1050px) {

    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 70px;
    }

    .footer-divider {
        margin: 56px 0 48px;
    }
}


@media (max-width: 1024px) {

    /* Header */
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-container {
    width: min(100%, var(--container));
    min-height: 96px;
    height: auto;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
        transition: max-height 0.28s ease;
    }

    .mobile-menu.is-open {
        max-height: 620px;
    }

    .mobile-nav {
        padding: 14px 20px 22px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-nav a,
    .mobile-dropdown-toggle {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 14px 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        text-align: left;
        cursor: pointer;
    }

    .mobile-dropdown-menu {
        display: none;
        padding: 4px 0 10px 14px;
    }

    .mobile-dropdown.is-open .mobile-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-dropdown-menu a {
        padding: 11px 12px;
        border-left: 2px solid rgba(47, 74, 153, 0.18);
        font-size: 14px;
        font-weight: 650;
        color: #344054;
    }

    .mobile-cta {
        margin-top: 10px;
        justify-content: center !important;
        padding: 15px 22px !important;
        border-radius: 999px;
        background: var(--blue) !important;
        color: var(--white) !important;
    }
}

@media (max-width: 760px) {

    /* FAQ Section */
    .faq-section {
        padding: 54px 0 72px;
    }

    .faq-container {
        width: min(100% - 32px, 940px);
    }

    .faq-heading {
        margin-bottom: 36px;
    }

    .faq-heading h1 {
        font-size: 38px;
    }

    .faq-heading p {
        font-size: 15px;
        line-height: 1.65;
    }

    .faq-accordion {
        gap: 13px;
    }

    .faq-question {
        min-height: 62px;
        padding: 0 18px;
        gap: 16px;
        font-size: 14px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .faq-answer p {
        padding: 0 18px 22px;
        font-size: 14px;
    }

    .faq-contact-box {
        margin-top: 38px;
        padding: 32px 22px 30px;
    }

    .faq-contact-box h2 {
        font-size: 18px;
    }

    .faq-contact-box p {
        font-size: 14px;
    }

    .faq-contact-button {
        width: 100%;
    }

    /* Footer */
    .site-footer {
        padding: 46px 0 28px;
    }

    .footer-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 26px;
    }

    .footer-description {
        max-width: 100%;
        text-align: left;
        font-size: 13px;
    }

    .footer-divider {
        margin: 42px 0 38px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title-line {
        margin: 18px 0 22px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-social {
        margin-top: 28px;
    }

    .footer-bottom {
        margin-top: 44px;
        padding-top: 24px;
    }

    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-img {
        height: 86px;
        max-height: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description {
        text-align: center;
    }

    .footer-main {
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .header-container {
        min-height: 78px;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header-logo-img {
        height: 62px;
        max-height: 72px;
    }
}

@media (max-width: 640px) {
}

@media (max-width: 430px) {

    /* FAQ Section */
    .faq-heading h1 {
        font-size: 33px;
    }

    .faq-badge {
        font-size: 9px;
    }

    .faq-question {
        align-items: flex-start;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .faq-icon {
        margin-top: -2px;
    }
}

@media (max-width: 420px) {
}

@media (max-width: 480px) {
    .header-logo-img {
        height: 54px;
    }

    .footer-logo-img {
        height: 76px;
    }
}
