.contact-page {
    padding: 80px 20px;
    background: #f5f7fa;
    min-height: 100vh;
}

.contact-container {
    max-width: 760px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.6;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.contact-form-card label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 15px;
    margin-bottom: 24px;
    transition: 0.2s ease;
    background: #fff;
}

.contact-form-card textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-submit-btn {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transition: 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 40px;
    }

    .contact-header p {
        font-size: 17px;
    }

    .contact-form-card {
        padding: 28px;
    }
}
