/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-container {
    width: 800px;
    margin: 30px auto;
    box-sizing: border-box;
}



/* Contact Section */
.contact-section {
    background-color: #ffffff;
    padding: 40px 30px;
    /*margin: 0px auto;*/
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

.contact-section h2 {
    font-size: 32px;
    color: #004d00;
    text-align: center;
    margin-bottom: 20px;
}


h3 {
    color: blue;
    font-size: 18px;
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #80808014;
}
h3 a{
    color: #007bff;
    text-decoration: unset;
}


.contact-section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #666;
}

/* Thank You Message */
#thank-you-message {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #e6ffe6; /* Light green background */
    border-radius: 10px; /* Rounded corners without border */
}

#thank-you-message h1 {
    font-size: 30px;
    color: #004d00;
    margin-bottom: 10px;
}

#thank-you-message p {
    font-size: 18px;
    color: #333;
}

/* Return to Home Button */
.return-home {
    display: inline-block;
    background-color: #004d00;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.return-home:hover {
    background-color: #66cc66;
    color: white;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-size: 16px;
    color: #004d00;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #66cc66;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.contact-btn {
    background-color: #004d00;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    max-width: 200px;
}

.contact-btn:hover {
    background-color: #66cc66;
}

/* Footer */
.footer {
    /*background-color: #004d00;*/
    color: #b1b1b1;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 26px;
    }

    .contact-section p {
        font-size: 16px;
    }

    #thank-you-message h1 {
        font-size: 24px;
    }

    #thank-you-message p {
        font-size: 16px;
    }

    .contact-btn {
        width: 100%;
    }
}


.nav-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.nav-list li {
    margin-bottom: 15px;
}

.nav-list li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-list li a:hover {
    background-color: #34495e;
    color: white;
}
