/* ==================== LEGAL PAGES STYLES ==================== */

.legal-page {
    padding: 140px 48px 100px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 64px;
    text-align: center;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

.legal-content {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 28px;
    margin-bottom: 16px;
}

.legal-section p {
    margin-bottom: 16px;
    font-size: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    margin: 16px 0;
    padding-left: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-accent-light);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--color-text);
}

.legal-section a {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-section a:hover {
    opacity: 0.8;
}

/* Cookie Table */
.cookie-table {
    margin: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.cookie-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row.cookie-header {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-row.cookie-header .cookie-type,
.cookie-row.cookie-header .cookie-purpose {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-type,
.cookie-purpose {
    padding: 16px 20px;
    font-size: 15px;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-type strong {
    color: var(--color-text);
}

.cookie-purpose {
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 120px 24px 80px;
    }

    .legal-header {
        margin-bottom: 48px;
    }

    .legal-section {
        margin-bottom: 36px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section h3 {
        font-size: 16px;
    }

    /* Cookie table responsive */
    .cookie-row {
        grid-template-columns: 1fr;
    }

    .cookie-row.cookie-header {
        display: none;
    }

    .cookie-type {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 8px;
    }

    .cookie-purpose {
        padding-top: 8px;
    }
}
