/* Footer */

footer {
    background: #222;
    color: #fff;
    padding: 50px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

footer div {
    flex: 1;
    min-width: 200px;
}

footer h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

footer a {
    color: #e63946;
    /* match your brand color */
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}