.site-footer {
    background-color: #ffffff;
    color: #025373;
    padding: 3rem 0 2rem;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    height: 42px;
    width: auto;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #025373;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    color: #025373;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #732753;
    text-decoration: none;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #025373;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-info p {
        font-size: 0.85rem;
    }
}
