/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
    color: #fff;
}

header {
    background-color: #117419;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

.content {
    padding: 40px 20px;
    text-align: center;
}

.content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.content h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.4em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-form {
    background-color: #505050;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

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

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input, 
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.contact-form button {
    padding: 12px;
    background-color: #14881d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 2em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #107218;
}


footer {
    margin-top: 6em;
    background-color: #117419;
    color: white;
    padding: 20px;
    text-align: center;
}