/* Contact Section Styles */
.contact-section {
    padding: 40px 40px; /* More padding for a standalone section */
    text-align: center;
    max-width: 800px; /* Max width for the content */
    margin: 0 auto; /* Center the section */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
}

.contact-section h2 {
    font-size: 2.5em;
    color: #272727; /* Dark charcoal */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.contact-section p {
    font-family: Arial, sans-serif; /* Readable font for general text */
    font-size: 1em;
    line-height: 1.6;
    color: #272727;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #ffffff; /* Slightly darker beige/khaki for form background */
    border: 0px solid #272727; /* Dark border */
    padding: 30px;
    text-align: left; /* Align form elements to the left */
    box-shadow: 0 0 0px rgba(152, 152, 152, 0.7); /* More pronounced grey glow for the form */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    gap: 20px; /* Space between form elements */
    width: 100%; /* Full width */
    max-width: 600px; /* Limit form width */
    margin: 0 auto; /* Center the form */
}

/* Add styles for the message alerts */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
