footer {
    width: 100%;
    background-color: white;
    color: black;
    padding: 40px 70px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 200px;
    cursor: pointer;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column a {
    margin: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    text-align: left;
}

.footer-column i {
    margin-right: 10px;
}

.footer-column .fa-chevron-right{
    font-size: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.28);
    padding-top: 15px;
}

.footer-credits > a:hover{
    text-decoration: underline;
    color: var(--gold-primary);
}

.hover_underline:hover{
    text-decoration: underline;
    color: var(--gold-primary);
}

/* Queries */
@media (max-width: 550px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        max-width: 300px;
    }

    .footer-column > h3{
        text-align: left;
    }
}