/* Условия использования — в концепции about/careers/press */

.terms-container {
    padding-bottom: var(--space-2xl, 3rem);
}

.terms-hero .about-subtitle {
    max-width: 720px;
}

.terms-section {
    padding: var(--space-6xl, 4rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: var(--space-2xl, 2rem) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light, #e2e8f0);
}

.terms-section .section-header {
    margin-bottom: var(--space-2xl, 2rem);
}

.terms-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--space-2xl, 2rem);
}

.terms-section .service-card {
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.terms-section .service-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.terms-section .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.terms-section .service-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    margin: 0 0 0.5rem 0;
}

.terms-section .service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary, #475569);
    line-height: 1.5;
    margin: 0;
}

.terms-section .section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.terms-section a[href^="mailto:"] {
    color: var(--primary, #2563eb);
    text-decoration: none;
    font-weight: 600;
}

.terms-section a[href^="mailto:"]:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-section .services-grid {
        grid-template-columns: 1fr;
    }
}
