.footer {
    background-color: var(--sailfestBlue);
    color: var(--pureWhite);
    padding: 40px 0 0 0;
    font-family: Arial, sans-serif;
    bottom: 0px;
    position: relative;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    align-items: center;
    text-align: center;margin: 0 auto;
}
.footer-contact img {
    max-width: 300px;
    width: 100%;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.footer-section {
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #007bff;
}

.footer-bottom {
    background-color: var(--sailSalmon);
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 6px;
    align-items: center;
}
.footer-bottom a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
#hs-eu-cookie-confirmation-inner {
    text-align: left;
}
.footer-top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: row;
    width: 100%;
    margin-bottom: 24px;
}
.footer-top-bar img {
    max-width: 200px;
    max-height: 120px;
    filter: drop-shadow(0 0 10px var(--newBlackTrans));
    transition: transform 0.2s ease;
}
.footer-top-bar img:hover {
    transform: scale(1.025);
}
.footer-top-bar img:active {
    transform: scale(0.975);
}

@media (max-width: 1100px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-bottom-container {
        gap: 15px;
    }
}