/* Legal Pages Styles (Terms, Privacy, etc.) */

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.legal-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

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

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
    border-image: var(--primary-gradient);
    border-image-slice: 1;
}

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

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.legal-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer Enhancement */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-container {
        padding: 20px 16px 60px;
    }

    .legal-header {
        padding: 40px 20px 30px;
        margin-bottom: 40px;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 40px 24px;
        border-radius: 16px;
    }

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

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

    .legal-section p,
    .legal-section ul li {
        font-size: 15px;
    }

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