/* Contact Section */
.contact-section {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
    color: #F2F2F2;
}

.contact-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #D72638;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    color: #F2F2F2;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #1a1a1a;
    color: #F2F2F2;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D72638;
}

/* Submit Button */
.submit-btn {
    align-self: center;
    padding: 0.8rem 1.5rem;
    background-color: #D72638;
    color: #F2F2F2;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #a81e2b;
}
