/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background-color: #0056b3; /* Deep blue background */
    color: #fff; /* White text */
    padding: 20px 0;
    text-align: center;
    position: relative; /* For better alignment of elements */
}

.main-header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
}

.main-header nav {
    margin-top: 10px;
}

.main-header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between links */
}

.main-header nav ul li {
    display: inline;
}

.main-header nav ul li a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-header nav ul li a:hover,
.main-header nav ul li a.active {
    background-color: #003d82; /* Darker blue on hover or active */
    color: #f1f1f1; /* Slightly lighter text */
}

/* Contact Section Styles */
.contact-section {
    text-align: center;
    padding: 20px;
}

.contact-section h2 {
    font-size: 2em;
    color: #0056b3;
}

.contact-section p {
    margin-bottom: 20px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #003d82;
}

/* Contact Info Section */
.contact-info {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 10px;
}

.contact-info a {
    color: #0056b3;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Styles */
.main-footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}
