body.page-contact .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-contact .contact-section {
    margin-bottom: 32px;
}

.page-contact .contact-sub {
    font-size: 1rem;
    margin-bottom: 32px;
    border-left: 4px solid #2563eb;
    padding-left: 16px;
    line-height: 1.6;
}

.page-contact .section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.page-contact .section-lead {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.page-contact .section-note {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 12px;
    line-height: 1.5;
}

.page-contact .contact-section-offline {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 24px;
    padding: 24px;
}

.page-contact .contact-section-coach {
    background: #f8fafc;
    border-radius: 24px;
    padding: 20px 24px;
    border: 1px solid #e2e8f0;
}

.page-contact .method-card-highlight {
    background: white;
    border-color: #86efac;
}

.page-contact .ticket-section {
    background: #eff6ff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-contact .ticket-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1e40af;
}

.page-contact .ticket-info p {
    color: #4b5563;
    font-size: 0.9rem;
}

.page-contact .ticket-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.page-contact .ticket-btn:hover {
    background: #1d4ed8;
}

.page-contact .contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.page-contact .method-card {
    flex: 1;
    min-width: 200px;
    background: #f9fafb;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: transform 0.2s;
}

.page-contact .method-card:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.page-contact .method-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.page-contact .method-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.page-contact .method-detail {
    font-size: 0.9rem;
    word-break: break-all;
}

.page-contact .method-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 8px;
}

.page-contact .wechat-qr-wrap {
    margin: 16px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.page-contact .wechat-qr-img {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #d1fae5;
    background: #fff;
}

.page-contact .wechat-qr-caption {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

.page-contact .work-time {
    background: #f3f4f6;
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    margin-top: 16px;
}

.page-contact .work-time p {
    font-size: 0.85rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .page-contact .ticket-section {
        flex-direction: column;
        text-align: center;
    }
    .page-contact .contact-methods {
        flex-direction: column;
    }
}
