.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Spartan', sans-serif;
}

.contact-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #000000;
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #FCFAF1;
    padding: 2rem;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
    margin-right: 1rem;
}

label { 
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

input, select, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 1px;
    font-family: 'Spartan', sans-serif;
    background-color: #fffffd;
}

input:focus, textarea:focus {
    border: 1px solid #333;
    outline: none;
}       

select {
    background-color: white;
}

textarea {
    resize: vertical;
}

.submit-btn {
    background-color: rgb(51, 51, 51);
    color: white;
    border: 1px solid rgb(51, 51, 51);
    padding: 0.75rem 1.5rem;
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #FCFAF1;
    color: rgb(51, 51, 51);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}