body, html {
    font-family: 'Inter',sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.65em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

main > section {
    margin-bottom: 3rem;
    margin-top: 1rem;
}

a {
    text-decoration: underline;
    transition: all .2s linear;
}
a:hover {
    color: #00ab2d;
}

.header {
    background-color: #ececec;
    padding: 14px 20px;
    border-radius: 40px;
}
@media (max-width: 552px) {
    .header {
        padding: 10px;
    }
}

.header .logo img {
    max-width: 170px;
    width: 170px;
    display: block;
}

footer {
    background-color: #24242e;
    font-size: 0.888rem;;
}

footer a {
    color: #fff;
}

footer .footer-logo img {
    max-width: 200px;
    display: block;
}

footer .footer-social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 0.8rem;
}

footer .footer-social-icons a {
    width: 22px;
    height: 20px;
}

footer .footer-social-icons svg {
    fill: #fff;
    width: 100%;
    height: 100%;
}

footer .footer-social-icons svg:hover {
    fill: #00ab2d;
}

footer .footer-logo-container {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}
@media (min-width: 993px) {
    footer .footer-logo-container {
        align-items: flex-start;
    }
}

/* ==========================================================================
   NAVIGATION BASE STYLES
   ========================================================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-direction: column;
}

.navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 992px) {
    .navbar-header {
        padding: 0 20px;
    }
}
@media (max-width: 552px) {
    .navbar-header {
        padding: 0px;
    }
}



/* ==========================================================================
   MOBILE MENU STYLES (992px and below)
   ========================================================================== */

@media (max-width: 992px) {
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.hamburger-icon {
    display: block;
}

.hamburger-icon svg {
    fill: #24242e;
    width: 30px;
    height: 30px;
}

.close-icon {
    display: none;
}

.close-icon svg {
    fill: #24242e;
    width: 30px;
    height: 30px;
}

.hamburger-btn.active .hamburger-icon {
    display: none;
}

.hamburger-btn.active .close-icon {
    display: block;
}

.menu {
    display: none;
    background-color: #ececec;
    width: 100%;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 552px) {
    .menu {
        padding: 0px 10px;
    }
}

.menu.active {
    display: block;
}

.menu-item {
    list-style: none;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    text-decoration: none;
    color: #3f3f4b;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    line-height: 3;
}
.menu-link:hover {
    color: #3f3f4b;
}

.menu-text {
    flex: 1;
}

.chevron-down {
    margin-left: auto;
}

.chevron-down .mobile-chevron {
    display: block;
    fill: #24242e;
    width: 17px;
    height: 15px;
}

.chevron-down .desktop-chevron {
    display: none;
    width: 9px;
    height: 9px;
}

.submenu {
    display: none;
    background-color: #ececec;
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu.active {
    display: block;
}

.submenu-item {
    list-style: none;
}

.submenu-link {
    display: flex;
    align-items: center;
    padding: 0;
    padding-left: 1rem;
    text-decoration: none;
    color: #3f3f4b;
    font-size: 18px;
    line-height: 3;
}
.submenu-link:hover {
    color: #3f3f4b;
}

.chevron-right {
    margin-right: 0.5rem;
}

.chevron-right svg {
    fill: #24242e;
    width: 11px;
    height: 12px;
    transform: rotate(-90deg);
}
}

/* ==========================================================================
   DESKTOP MENU STYLES (993px and above)
   ========================================================================== */

@media (min-width: 993px) {
    .navbar {
        flex-direction: row;
        align-items: center;
    }

    .navbar-header {
        width: auto;
    }

    .hamburger-btn {
        display: none;
    }

    .menu {
        display: flex !important;
        background-color: transparent;
        width: auto;
        margin: 0;
        list-style: none;
        padding: 0;
        align-items: center;
    }

    .menu-item {
        list-style: none;
        position: relative;
    }

    .menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
        text-decoration: none;
        color: #3f3f4b;
        cursor: pointer;
        background: none;
        border: none;
        text-align: left;
        font-size: 0.88888888888889rem;
        line-height: 3;
        white-space: nowrap;
    }

    .menu-link:hover {
        color: #00ab2d;
    }

    .menu-text {
        flex: none;
    }

    .chevron-down {
        margin-left: 8px;
    }

    .chevron-down .mobile-chevron {
        display: none;
    }

    .chevron-down .desktop-chevron {
        display: block;
        fill: #24242e;
        width: 9px;
        height: 9px;
    }

    /* Desktop submenu styles */
    .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 240px;
        border: 1px solid #00ab2d;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu-item:hover .submenu {
        display: block;
    }

    .submenu-item {
        list-style: none;
    }

    .submenu-link {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: #3f3f4b;
        font-size: 0.88888888888889rem;
        line-height: 1.4;
        transition: color 0.2s ease;
    }

    .submenu-item:last-child .submenu-link {
        border-bottom: none;
    }

    .submenu-link:hover {
        color: #00ab2d;
    }

    .chevron-right {
        display: none;
    }

    /* Remove click functionality for desktop submenu toggles */
    .menu-item .menu-link[onclick] {
        pointer-events: none;
    }

    .menu-item .menu-link[onclick] .menu-text {
        pointer-events: auto;
        cursor: pointer;
    }
}