


.contact-page {
    max-width: 920px;
    margin: 50px auto;
    padding: 0 20px;
}

.contact-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.10);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-hero {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    padding: 34px 36px;
}

.contact-hero,
.contact-hero h1,
.contact-hero p {
    color: #ffffff!important;
}

.contact-hero h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    line-height: 1.2;
}

.contact-hero p {
    margin: 0;
    font-size: 17px;
    opacity: 0.95;
}

.contact-body {
    padding: 34px 36px;
}

.contact-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-weight: 600;
}

.contact-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.contact-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-form-group {
    margin-bottom: 18px;
}

.contact-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
    color: #111827;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.contact-hidden {
    display: none;
}

.contact-submit {
    display: inline-block;
    background: #16a34a;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.contact-submit:hover {
    background: #15803d;
    transform: translateY(-1px);
}

.contact-note {
    margin-top: 18px;
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-hero,
    .contact-body {
        padding: 26px 22px;
    }

    .contact-hero h1 {
        font-size: 26px;
    }
}

