/* Legal Pages - V2 Theme (Light Blue) */

.legal-page {
    min-height: calc(100vh - 70px);
    padding: calc(70px + 40px) 24px 40px;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.legal-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

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

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

.legal-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 16px;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.legal-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 12px;
}

.legal-list li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 6px;
}

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

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

.legal-section a:hover {
    color: var(--primary);
}

/* Footer - V2 dark style */
.legal-footer {
    background: var(--text-dark);
    color: white;
    padding: 32px 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}

.footer-social .social-link:hover {
    background: var(--primary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.legal-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: calc(70px + 24px) 16px 24px;
    }

    .legal-container {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .legal-title {
        font-size: 26px;
    }

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

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

    .legal-section p,
    .legal-list li {
        font-size: 14px;
    }

    .legal-list {
        margin-left: 16px;
    }

    .footer-links {
        gap: 16px;
    }
}