/* =============================================
 * Footer Styles
 * ============================================= */

 .site-footer {
    background-color: #1e304d;
    color: white;
    padding: 20px 0 20px;
    margin-top: 50px;
    font-family: 'VAG Rounded', Arial, sans-serif;
}

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

.footer-logo {
    width: 220px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: #8e97a6;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

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

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

.footer-link {
    color: #b8c1d1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-social {
    width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    color: white;
    background-color: #385077;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-icon:hover {
    background-color: #5574a7;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo, .footer-social {
        width: 100%;
        text-align: center;
    }
    
    .footer-links {
        justify-content: space-between;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
}