/* contact.css */

/* General Styles for Contact Page */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Contact Section */
.contact {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.contact h2 {
    color: #003366; /* Dark blue */
}

.contact-form {
    background-color: #ffffff; /* White background */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

/* Footer Styles */
footer {
    background-color: #003366; /* Dark blue footer */
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
}