footer .footer-top {
    background-color: var(--navy-color);
    color: var(--white-color);
    padding: 1.75rem 0;
}

footer .footer-top a {
    color: var(--white-color);
    font-size: 0.9375rem;
    font-style: normal;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-top a:hover {
    color: var(--red-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

footer .footer-top h1,
footer .footer-top h2,
footer .footer-top h3,
footer .footer-top h4,
footer .footer-top h5,
footer .footer-top h6 {
    color: var(--white-color);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

footer .footer-top .footer-widgets-first {
    display: flex;
    gap: 1.5rem;
    justify-content: space-around;
}


footer .footer-top .footer-widget:not(:has(.footer-widget-title)) {
    margin-top: 1.75rem;
}

footer .footer-top .footer-widget .footer-widget-title {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: var(--red-color);
}

footer .footer-top .footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .footer-top .footer-company-info .logo {
    width: 4.9375rem;
    height: auto;
    display: block;
}

footer .footer-top ul,
footer .footer-top ol,
footer .footer-top ul li,
footer .footer-top ol li {
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 220%;
    margin-bottom: 0;
}

footer .footer-top .social-media-list li a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .footer-top .icon-wrapper {
    display: flex;
    gap: 1rem;
}

footer .footer-top .icon-wrapper svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 991px) {
    footer .footer-top .footer-company-info {
        align-items: center;
        text-align: center;
        margin-bottom: 1.75rem;
    }
    footer .footer-top .footer-company-info .icon-wrapper {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    footer .footer-top .footer-widgets-first {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    footer .footer-top .footer-widget:not(:has(.footer-widget-title)) {
        margin-top: 0;
    }

    footer .footer-top .footer-widget {
        text-align: center;
    }

    footer .footer-top .social-media-list li a {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    footer .footer-top .footer-widgets-second {
        margin-top: 1.75rem;
    }
}

.footer .footer-bottom {
    background-color: var(--light-navy-color);
    color: var(--white-color);
    padding: 1.25rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer .footer-bottom a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-bottom a:hover {
    color: var(--red-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer .footer-bottom p {
    margin: 0;
    padding: 0;
}