body.legal-page {
    background:
        radial-gradient(circle at top left, rgba(0, 188, 212, 0.12), transparent 34%),
        linear-gradient(180deg, #f4fbfd 0%, #ffffff 22%, #f7fafc 100%);
}
body.legal-page main {
    min-height: calc(100vh - 320px);
}
section {
    padding: 0;
}
.legal-hero {
    padding: 80px 0 60px;
}

.legal-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0 24px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.legal-description {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 720px;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(14, 29, 52, 0.08);
}

.legal-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 170px;
}

.legal-meta-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-meta-item strong {
    font-size: 1rem;
    color: var(--secondary-color);
}

.legal-content-section {
    padding: 60px 0 80px;
}
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.policy-card {
    background: var(--white);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(14, 29, 52, 0.06);
    border: 1px solid rgba(14, 29, 52, 0.06);
}
.policy-section + .policy-section {
    margin-top: 40px;
}
.policy-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
.policy-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    background: #f0f7ff;
    border-radius: 10px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.policy-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}
.policy-section p {
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 16px 0;
}
.policy-list-intro {
    font-weight: 700;
    color: var(--secondary-color) !important;
    margin-bottom: 12px !important;
}
.policy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.policy-list li {
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    color: var(--text-gray);
}
.policy-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}
.policy-callout {
    padding: 20px 24px;
    background: rgba(0, 188, 212, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 24px 0 0;
    font-size: 0.95rem;
}
.policy-contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
.policy-contact-card > div {
    padding: 20px;
    background: #f0f7ff;
    border-radius: 10px;
}
.policy-contact-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.policy-contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.policy-contact-card a:hover,
.policy-contact-card a:focus {
    text-decoration: underline;
}
.policy-contact-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 991px) {
    .legal-hero h1 {
        font-size: 2rem;
    }

    .policy-card {
        padding: 24px;
    }

    .policy-section-header {
        gap: 12px;
    }

    .legal-meta {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .legal-hero {
        padding: 40px 0 30px;
    }

    .legal-hero h1 {
        font-size: 1.5rem;
    }

    .policy-contact-card {
        grid-template-columns: 1fr;
    }

    .policy-card,
    .policy-card {
        padding: 18px;
    }
}
