.footer {
    max-width: 100%;
    height: auto;
    background-color: #2E2B2B;
    color: #F4F0E8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    padding: 100px 100px 15px 100px;
    gap: 50px;
}

.footer * {
    font-size: 24px;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: left;
    align-items: start;
    flex-wrap: wrap;
    gap: 70px;
}

.footer-container a:hover, .footer-container p:hover {
    color: var(--jkpodolog-color-coral);
}

.footer-column {
    font-family: 'Montserrat';
    flex: 1;
    justify-content: left;
    color: #F4F0E8;

}

.footer-colum h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer-logo-container {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.footer-contact,
.footer-sitemap {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 25px;
}

.footer-contact-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-underline {
    text-decoration: underline;
}

.footer h3 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 600;
    text-decoration: none;
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 20px;
}

.footer-sitemap li {
    padding: 0;
}

.footer a {
    color: #F4F0E8;
    text-decoration: none
}

.footer-sitemap a {
    color: var(--jkpodolog-color-ivory);
    text-decoration: none;
    display: block;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: 2px;

}

.footer-sitemap a:hover {
    color: var(--jkpodolog-color-coral);
}

.footer-line {
    height: 1px;
    width: 100%;
    background-color: var(--jkpodolog-color-ivory);
}

.footer-divider {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}



.footer h3 {
    font-size: 24px;
}

.footer p {
    font-size: 20px;
}

.footer a {
    font-size: 20px;
}

p.footer-author {
    color: #F4F0E8;
    font-size: 16px;
    text-align: left;
    width: 100%;
    max-width: 1400px;
}

.footer-socials {
    display: flex; 
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

@media (max-width: 1200px) {
    .footer {
        padding: 40px 20px 10px 20px;
        flex-wrap: nowrap;
        flex-direction: column;
        row-gap: 50px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        max-width: 600px;
    }

    .footer-divider {
        max-width: 600px;
    }

    .footer h3 {
        font-size: 20px;
    }

    .footer p {
        font-size: 18px;
    }

    .footer a {
        font-size: 18px;
    }

    .footer-logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .footer-logo svg {
        width: 50%;
        height: auto;
    }

    p.footer-author {
        font-size: 14px;
    }

    .footer-column {
        max-width: 100%;
        width: 100%;
    }
}