.site-footer {
    background-color: #1a3d1f;
    color: white;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact, .footer-info {
    flex: 1;
    min-width: 280px;
}

.footer-contact h2, .footer-info h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f1f1f1;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-form button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-form button:hover {
    background-color: #218838;
}

.footer-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #ddd;
}

.footer-info a {
    color: #aad576;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3b693f;
    margin-top: 20px;
    font-size: 13px;
    color: #ccc;
}
