.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem; 
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #4A4A4A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 2rem 1rem;
        margin: 1rem;
    }
}

.submit-btn {
    background: #A63829;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: auto;
}

.submit-btn:hover {
    background: #8b2e20;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-weight: bold;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f7f7f7;
    border-radius: 10px;
}

.required {
    color: #C8102E;
}