.site-footer {
    background-color: #27ae60;
    color: white;
    padding: 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-address h4,
.footer-links h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    margin: 4px 0;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-links img {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #ffe9e0;
}

@media (min-width: 600px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
    }
}
