.footer {
    background: #f8f9fa;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #eee;
    color: #333;
    font-family: 'DM Sans', sans-serif;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2e7d32;
}
.footer-brand p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #111;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #2e7d32;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}
.footer-social a:hover {
    background: #2e7d32;
    color: white;
}
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Footer responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer {
        padding: 2rem 1rem 1.5rem;
        margin-top: 2rem;
    }
    .footer-brand h2 {
        font-size: 1.5rem;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
}