
footer{
    padding-bottom: 100px;
}

.site-footer {
    padding-top: 100px;
    padding-bottom: 35px;
    background-color: var(--turquoise);
    color:white;
    width: 100vw; /* Full viewport width */
    max-width: 100%; /* Prevents unwanted constraints */
    margin: 0 auto;
}

.footer-menu ul li {
    font-size: 1.375rem;
    padding-bottom: 10px;
}

.c-footer-buttons {
    width: 50vw;
}

.inverted-button {
    background-color: white;
    color: var(--turquoise);
}

.footer-credit select {
    background-color: transparent;
}

.site-footer .language-switcher {
    appearance: none; /* Removes default arrow */
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20"><polygon points="6,8 12,16 18,8" fill="%23FFFFFF"/></svg>') no-repeat right 10px center;
    background-size: 16px;
    padding-right: 28px; /* Ensure space for the larger triangle */
}

@media (max-width: 768px) {
    .footer-container {
        flex-wrap: wrap;
        align-content: center;
        gap: 1.5rem;
    }
    .c-footer-buttons {
        width: 75vw;
    }
}