
.site-footer {
    background: linear-gradient(90deg, #f8f9fa, #ffffff);
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    font-family: "Arial", sans-serif;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-info p {
    margin: 0;
    color: #444;
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
}

.footer-link {
    margin-left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #0078D4;
    transition: all 0.3s ease;
}

.footer-link:first-child {
    margin-left: 0;
}

.footer-link svg {
    transition: transform 0.3s ease;
}

.footer-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-link:hover svg {
    transform: scale(1.2);
}

.footer-link.instagram {
    color: #e1306c;
}

.footer-link.whatsapp {
    color: #25D366;
}
