.contact-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 420px;
    background: #f7f3ee;
    padding: 30px;
    border-radius: 6px;
}

.contact-form label {
    font-size: 14px;
    display: block;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    padding: 8px 4px;
    font-size: 14px;
}

.contact-form textarea {
    border: 1px solid #999;
    margin-top: 5px;
    height: 100px;
    resize: none;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #000;
    color: #fff;
}

.error {
    color: #c0392b;
    font-size: 12px;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-group button {
    flex: 1;
    padding: 10px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.btn-group button.outline {
    background: transparent;
    color: #000;
}

.btn-group button:hover {
    opacity: 0.85;
}

