.site-footer {
    background: linear-gradient(to bottom, #F9FFF6 0%, #f8faf7 100%);
    padding: 80px 0 30px;
    color: #333;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Brand column is wider */
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Column */
.footer-logo svg {
    width: 240px; /* More balanced size */
    height: auto;
    margin-bottom: 20px;
    color: #16a34a;
}

.brand-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Typography & Headings */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #7ca545;
}

/* Menus & Lists */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column a:hover {
    color: #7ca545;
    padding-left: 5px; /* Subtle interaction */
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #7ca545;
    color: #fff !important;
    border-color: #7ca545;
    padding-left: 0; /* Reset hover padding */
}

/* Contact Specifics */
.footer-contact-info li {
    display: flex;
    gap: 12px;
    color: #666;
    line-height: 1.4;
}

.footer-contact-info i {
    color: #7ca545;
    margin-top: 4px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom small {
    color: #999;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .brand-col {
        grid-column: span 2;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .brand-col {
        grid-column: span 1;
    }
    .footer-contact-info li {
        justify-content: center;
    }
    .footer-heading::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #7ca545;
        margin: 10px auto;
    }
}