:root {
    --header-yellow: #f6d600;
    --text: #1a1a1a;
    --button-red: #ff6b4a;
    --button-red-hover: #ff5c37;
    --panel-shadow: rgba(0, 0, 0, 0.22);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Avenir, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji" !important;
}

body {
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    position: relative;
}

.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7ecec;
    position: fixed;
    z-index: 1000;
}

.header-wrap {
    max-width: 1500px;
    height: 82px;
    margin: auto;
    padding: 0 81px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    width: 280px;
    display: block;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

    .nav > a,
    .nav-link {
        text-decoration: none;
        color: #24344d;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: 0.2s ease;
    }

        .nav > a:hover,
        .nav-link:hover {
            color: #075f61;
        }

/* NAV ITEM */
.nav-item {
    position: relative;
}

/* CHEVRON */
.chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid #24344d;
    border-bottom: 2px solid #24344d;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: all 0.25s ease;
}

/* DROPDOWN */
.dropdown {
    position: absolute;
    top: 42px;
    left: 0;
    width: 290px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #edf0f2;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

    .dropdown a {
        display: block;
        text-decoration: none;
        padding: 11px 20px;
        color: #43506a;
        font-size: 15px;
        font-weight: 500;
        transition: 0.2s ease;
    }

        .dropdown a:hover {
            background: #f7f9fa;
            color: #075f61;
        }

    .dropdown .active {
        color: #075f61;
        font-weight: 700;
    }

/* DESKTOP HOVER */
@media(min-width:901px) {

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item:hover .chevron {
        transform: rotate(-135deg);
        margin-top: 3px;
    }
}

/* APPLY BUTTON */
.apply-btn {
    background: #ff6b4a;
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s ease;
}

    .apply-btn:hover {
        background: #ff5c37;
    }

/* MOBILE */
.hamburger {
    display: none;
    width: 34px;
    height: 28px;
    position: relative;
    cursor: pointer;
}

    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #075f61;
        border-radius: 20px;
        transition: 0.3s ease;
    }

        /* TOP */
        .hamburger span:nth-child(1) {
            top: 0;
        }

        /* MIDDLE */
        .hamburger span:nth-child(2) {
            top: 12px;
        }

        /* BOTTOM */
        .hamburger span:nth-child(3) {
            bottom: 0;
        }

/* OPEN STATE */
#menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 13px;
}

.dropdown-toggle {
    display: none;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #fff;
    overflow: hidden;
}

/* WAVE */
.footer-wave {
    width: 100%;
    display: block;
    margin-bottom: -35px;
}

/* DARK SECTION */
.footer-content {
    background: #002f33;
    color: #fff;
    padding: 0px 70px;
}

/* INNER */
.footer-inner {
    max-width: 1500px;
    margin: auto;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: 260px 1.2fr 1.1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

/* BRAND */
.footer-brand {
    text-align: center;
}

    .footer-brand img {
        width: 160px;
        margin-bottom: 28px;
    }

/* BUTTON */
.footer-btn {
    display: inline-block;
    background: #fff;
    color: #24344d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 52px;
    border-radius: 14px;
    transition: 0.25s ease;
}

    .footer-btn:hover {
        background: #f4f4f4;
    }

/* FOOTER TITLES */
.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
}

/* FOOTER LINKS */
.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 22px;
    transition: 0.2s ease;
}

    .footer-col a:hover {
        text-decoration: underline;
    }

/* DIVIDER */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.22);
    margin: 56px 0 34px;
}

/* DISCLAIMER */
.footer-text {
    max-width: 1080px;
    margin: auto;
    text-align: center;
}

    .footer-text p {
        font-size: 15px;
        line-height: 1.7;
        font-weight: 400;
        margin-bottom: 0px;
    }

    .footer-text a {
        color: #fff;
        text-decoration: underline;
    }

/* COPYRIGHT */
.copyright {
    color: rgba(255,255,255,0.72);
    font-size: 12px;
}

.main-content {
    margin-top: 95px;
}


@media(max-width:1200px) {

    .nav {
        gap: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
    }

    .footer-brand {
        text-align: left;
    }
}


@media(max-width:900px) {

    .header-wrap {
        height: 78px;
        padding: 0 20px;
    }

    .logo img {
        width: 220px;
    }

    .hamburger {
        display: block;
    }

    .nav {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        border-top: 1px solid #e7ecec;
        border-bottom: 1px solid #e7ecec;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.25s ease;
    }

    #menu-toggle:checked ~ .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav > a,
    .nav-item,
    .nav-link {
        width: 100%;
    }

    .nav > a,
    .nav-link {
        padding: 14px 0;
        justify-content: space-between;
        font-size: 15px;
    }

    /* MOBILE DROPDOWN */
    .dropdown {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .dropdown-toggle:checked ~ .dropdown {
        max-height: 300px;
    }

    .dropdown-toggle:checked + .nav-link .chevron {
        transform: rotate(-135deg);
        margin-top: 3px;
    }

    .dropdown a {
        padding: 12px 10px;
        font-size: 15px;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
        margin-top: 12px;
        padding-left: 10px;
        display: block !important;
    }

    /* FOOTER */
    .footer-wave {
        margin-bottom: -18px;
    }

    .footer-content {
        padding: 70px 20px 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .footer-col h3 {
        margin-bottom: 18px;
    }

    .footer-col a {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-text p {
        font-size: 13px;
    }
}