.contact-page {
    min-height: 100vh;
    background: #f4f6f8;
    padding: 2.4rem 1.6rem;
}

.contact-card {
    max-width: 78rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 0.6rem 2.4rem rgba(0, 0, 0, 0.1);
    padding: 2.4rem;
}

.contact-card h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.contact-card label {
    display: block;
    font-size: 1.5rem;
    margin: 1.4rem 0 0.6rem;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    border: 1px solid #c8d0d8;
    border-radius: 0.6rem;
    padding: 1.1rem 1.2rem;
    font-size: 1.6rem;
    font-family: inherit;
    background: #fff;
}

.contact-card textarea {
    resize: vertical;
}

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

.consent {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.6rem 0 2rem;
}

.consent input[type="checkbox"] {
    width: 1.8rem;
    height: 1.8rem;
    margin-top: 0.2rem;
}

.consent label {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.4;
}

.contact-card .button {
    border: 0;
    cursor: pointer;
}

.contact-note {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #4e5965;
}

.status-message {
    display: none;
    font-size: 1.5rem;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
}

.status-message.success {
    display: block;
    background: #e8f7ea;
    color: #136f2d;
}

.status-message.error {
    display: block;
    background: #fdecec;
    color: #9f1d1d;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media screen and (min-width: 768px) {
    .contact-page {
        padding: 4rem 2rem;
    }

    .contact-card {
        padding: 3.2rem;
    }

    .three-columns {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.6rem;
    }
}
