/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-section .container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #057c85;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #057c85;
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}

.form-group select:focus {
    border-color: #057c85;
    outline: none;
}

.btn-primary {
    background: #057c85;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    width: 100%;  /* Ensures button takes full width of form */
    max-width: 200px; /* Limits max width */
    text-align: center;
    display: block;  /* Ensures block-level alignment */
    margin: 20px auto 0; /* Centers the button */
}

.btn-primary:hover {
    background: #045b65;
}

/* Success Message */
.success-message {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #28a745;
    font-weight: bold;
    display: none;
}
