/* ================= FOOTER ================= */

.site-footer {
    background: #111;
    color: #eee;
    padding: 50px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}