/* Footer */
footer {
    background-color: #ffffff;
    padding: 3rem 4rem;
    text-align: left;
    border-top: 1px solid #DEE2E6;
    margin-top: 0;
}

.footer-header {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    margin-right: 2rem;
}

.footer-separator {
    flex: 1;
    height: 5px;
    background: #50A0A6;
}

.footer-members {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.member-column {
    flex: 1;
    min-width: 0;
}

.member-content {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.member-icon {
    width: 50px;
    height: auto;
    flex-shrink: 0;
}

.member-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.member-description {
    font-family: "Lato", sans-serif;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: #005669;
}

.a:hover {
    text-decoration: underline;
    color: #005669;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-members {
        flex-direction: column;
        gap: 1.5rem;
    }

    .member-name {
        font-size: 0.95rem;
    }

    .member-description {
        font-size: 0.8rem;
    }
}