﻿.site-footer {
    background-color: #f8f9fa;
    color: #5a4bda;
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

    .footer-column a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-column a:hover {
            color: #5a4bda;
            text-decoration: underline;
        }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #dee2e6;
    margin-top: 30px;
}

/*.footer-section {
    margin-bottom: 20px;
}*/

@media (max-width: 576px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .footer-section:first-child,
    .footer-section:last-child {
        grid-column: span 2;
        text-align: center;
    }

    .footer-section {
        border-bottom: 1px solid #eee;
        /*padding-bottom: 10px;*/
    }

        .footer-section:last-child {
            border-bottom: none;
        }
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.social-links a {
    margin: 0 8px;
}

/*.footer-section:last-child {
    margin-top: 10px;
}*/

.footer-links a {
    display: inline-block;
    min-height:unset;
}
