/* Footer Section */
.site-footer {
    background-color: #fdf6e8;
    padding: 3rem 1rem 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid #e0d5c0;
    padding-bottom: 2rem;
}

.footer-column {
    flex: 1 1 200px;
    flex-wrap: wrap;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2e2e2e;
}

.footer-contact li,
.footer-links li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
    display: flex;
    align-items: center;
}

.footer-contact .icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}


.footer-links a {
    text-decoration: none;
    color: #2e2e2e;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f26722;
}

.highlight-link {
    color: #f26722;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2.2rem;
    justify-content: center;
}

.social-icon {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}