.site-footer {
    background-color: #00223350;
    color: #ffffff;
    padding: 30px 20px;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-social svg {
    fill: #ff8c00;
    color: #ff8c00;
}

/* Layout for wider screens */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-email,
    .footer-copy {
        flex: 1;
    }

    .footer-social {
        flex: 1;
        justify-content: center;
    }
}

.footer-email a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a svg {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
}

.footer-social a:hover svg {
    transform: scale(1.2);
}

.footer-copy {
    color: #cccccc;
    font-size: 0.85rem;
}