.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.contact-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    font-family: inherit;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-grid .full-width {
    grid-column: 1 / -1;
}

.contact-field {
    position: relative;
}

.contact-field fieldset {
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 8px 16px 12px;
    margin: 0;
    transition: border-color 0.2s;
}

.contact-field fieldset:focus-within {
    border-color: #111;
}

.contact-field legend {
    font-size: 12px;
    color: #666;
    padding: 0 4px;
    margin-bottom: 0;
    width: auto;
    border: none;
    font-weight: 400;
}

.contact-field legend .required {
    color: #e53935;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #111;
    background: transparent;
    font-family: inherit;
    padding: 0;
    margin: 0;
}

.contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-field select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.contact-error {
    color: #e53935;
    font-size: 12px;
    margin-top: 4px;
    padding-left: 16px;
}

.contact-submit {
    display: inline-block;
    background: #111;
    color: #fff;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 32px;
    transition: background 0.2s;
    font-family: inherit;
}

.contact-submit:hover {
    background: #333;
}

.contact-captcha {
    margin-top: 24px;
}

.contact-address {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.contact-address a {
    color: #666;
    text-decoration: none;
}

.contact-address a:hover {
    color: #111;
}

@media (max-width: 600px) {
    .contact-page {
        padding: 32px 16px 60px;
    }
    .contact-page h1 {
        font-size: 28px;
        margin-bottom: 28px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
