#footer-wrap {
    background-color: var(--main-color);
    color: white;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.footer-col {
    text-align: center;
    flex: 1;
    padding: 0 20px;
    margin: 0 20px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col h3 {
    font-size: 2rem;
    margin-top: 0px;
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
}

.footer-sitemap {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 250px;
}

#footer-wrap a {
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

#footer-wrap a:hover {
    color: var(--compliment-color);
}

.footer-col p {
    font-size: 1rem;
    margin-top: 5px;
}

.footer-col strong {
    font-size: 1.2rem;
}

#footer-wrap .sub-link {
    font-size: 1.1rem;
    color: var(--compliment-color);
}

#footer-wrap > .sub-link:hover {
    color: var(--dark-compliment-color);
}

.footer-privacy {
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
}