.contacts-page {
    background: #F5F5F5;
}

/* --- Карточки --- */
.contacts-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.contact-emoji {
    font-size: 24px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* --- Футер --- */
.contacts-footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-tertiary);
    font-style: italic;
    margin-top: 24px;
    padding-bottom: 10px;
}

html, body {
    background: #F5F5F5 !important;
}
