/* Contact Page Styling */
.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 70vh;
}

.form-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fffca9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-section h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #890a00;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 5px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.submit-button {
    padding: 15px 40px;
    background-color: #28a745;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .form-section h2 {
        font-size: 2em;
    }

    .submit-button {
        font-size: 1.2em;
        padding: 12px 30px;
    }
}
