/* ===== FOOTER ===== */
footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #aaa;
}

.footer-section p, .footer-section a {
    margin-bottom: 10px;
    color: #ccc;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: #aaa;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: white;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #aaa;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #ccc;
}