/* Contact Page Specific Styles */
.contact-section {
    padding: 4rem 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-content h2 {
    color: #004d40;
    margin-top: 0;
}

.contact-content p {
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #004d40;
}

input,
textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Merriweather', serif;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #00796b;
}

.btn.primary {
    align-self: center;
    margin-top: 2rem;
    width: auto;
}
