.contact-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.contact-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
}

.contact-container .subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #31a668;
    box-shadow: 0 0 0 3px rgba(49, 166, 104, 0.2);
    background-color: #fff;
}

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

.contact-container button {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    background-color: #31a668;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-container button:hover {
    background-color: #298a57;
}

#form-status {
    margin-top: 1.5rem;
    text-align: center;
    min-height: 1.5rem;
    font-weight: 500;
}