/* Contact Us Section Styles */
.contact-section {
    background-color: #f4f4f4; /* Light grey background for contrast */
    padding: 60px 0;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    color: #004B87; /* Dark blue for the title */
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-description {
    font-size: 1.1rem;
    color: #333; /* Slightly darker text for readability */
    max-width: 600px;
    margin: 0 auto 30px; /* Centered and spaced below the title */
}

.contact-button-wrapper {
    margin-top: 20px;
}

.contact-button {
    font-size: 1.1rem;
    color: #fff;
    background-color: #004B87; /* Dark blue background for the button */
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #006bb6; /* Slightly lighter blue on hover */
}
