body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.banner {
    background: url('images/banner.jpg') center center / cover no-repeat;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 4px #000;
    font-size: 3rem;
}

.contact-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2d8c67;
}

form {
    display: flex;
    flex-direction: column;
}

input,
select,
textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 12px;
    background-color: #2d8c67;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #256c50;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

footer {
    background-color: #2d8c67;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer img {
    height: 40px;
    margin-bottom: 15px;
}

.social-icons img {
    width: 24px;
    margin: 0 5px;
    vertical-align: middle;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    margin: 0 8px;
}