.site-footer {
    background-color: #2e7d32;
    color: #f1f8e9;
    padding: 3rem 1rem;
    font-size: 14px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 220px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 16px;
    color: #c8e6c9;
}

.footer-section a {
    color: #e8f5e9;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-section a:hover {
    color: #a5d6a7;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    color: #cfd8dc;
    font-size: 13px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    flex: 1;
}

.newsletter-form button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #388e3c;
}