/* CONTACT FORM STYLES */
.contact-container {
    max-width: 600px;
    margin: 80px auto; /* Center the form with space from the top */
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e4f8f; /* Using theme color */
}

.contact-container label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.contact-container input, .contact-container textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-container button {
    background-color: #1e4f8f;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.contact-container button:hover {
    background-color: #3a8ad3;
}

.contact-container textarea {
    resize: vertical; /* Allow vertical resizing */
}


/* Success Message Styling */
.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}
