* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    display: block;
    width: 100%;
}
body {
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
}

#contact {
    scroll-margin-top: 223px;
}

header {
    background-color: #fdc516;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
    z-index: 100;
    position: sticky;
    top: 0;
}
.logo-section {
    display: flex;
    -align-items: center;
    gap: 15px;
}
.brand-text h1 {
    font-size: 32px;
    color: #1C3B4F;
    font-weight: bold;
}
.brand-text p {
    font-size: 14px;
    color: #1C3B4F;
}
nav.desktop-nav {
    display: flex;
    align-items: self-end;
    justify-content: center;
    -gap: 30px;
}
nav.desktop-nav a {
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-decoration: none;
    color: #1C3B4F;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s;
    line-height: 19px;
    border-right: 2px solid #1C3B4F;
    padding: 0 15px;
}
nav.desktop-nav a:last-child {
    border-right: none;
    padding: 0;
}

nav.desktop-nav a:nth-last-child(2) {
    border-right: none;
    padding: 0 20px;
}
nav.desktop-nav a:hover {
    -color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #1C3B4F;
    transition: all 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FDB913;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    flex-direction: column;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 48px;
    color: #1C3B4F;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    margin: 4em 1em;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}

.mobile-nav a {
    text-decoration: none;
    color: #1C3B4F;
    font-weight: 600;
    font-size: 24px;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #fff;
}

.mobile-nav .cta-button {
    margin-top: 20px;
}

.footer {
    background-color: #fdc516;
    padding: 40px 60px;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-brand h3 {
    font-size: 28px;
    color: #1C3B4F;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.footer-brand p {
    font-size: 14px;
    color: #1C3B4F;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-column h4 {
    font-size: 20px;
    color: #1C3B4F;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.footer-column a {
    color: #1C3B4F;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
}
.footer-column a:hover {
    color: #2B4C70;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    font-size: 24px;
    transition: transform 0.3s;
}
.social-icons a:hover {
    transform: scale(1.2);
}

.talk-mob {
    display: none;
}

.img-mobile {
    display: none;
}

@media (max-width: 968px) {

    #contact {
        scroll-margin-top: 170px;
    }

    .img-mobile {
        display: block;
    }

    .img-desk {
        display: none!important;
    }

    header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .logo-section img {
        -width: 50%;
    }

    .talk-mob {
        display: block;
    }

    .footer-logo img {
        width: 50%;
    }

    nav.desktop-nav {
        flex-wrap: wrap;
        justify-content: baseline;
        gap: 15px;
    }

    header nav.desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
}