.contact-main {
    max-width: 500px;
    margin: 48px auto;
    background: #fbeedc;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(60,40,20,0.08);
    padding: 32px 24px;
}
.contact-main h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    font-size: 1.1rem;
    padding: 12px;
    border: 1.5px solid #e6d3b3;
    border-radius: 8px;
    background: #fff;
    color: #3d2c1a;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}
.contact-form textarea {
    min-height: 90px;
}
.contact-form button {
    background: #b25c2e;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #7a4a2f;
}
.confirmation {
    background: #e6d3b3;
    color: #3d2c1a;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 18px;
    text-align: center;
    font-size: 1.1rem;
}
