/* Legal Pages Specific Styles (Privacy Policy & Terms of Service) */

/* Hero Section */
.legal-hero {
    background: var(--background-gray);
    padding: 8rem 0 4rem;
    text-align: center;
}

.legal-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    color: var(--text-light);
    font-size: 0.7rem;
}

.breadcrumb span {
    color: var(--text-secondary);
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Content Section */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.legal-section h2 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

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

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 7rem 0 3rem;
    }

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

    .legal-content {
        padding: 3rem 0;
    }

    .legal-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 1.875rem;
    }

    .legal-section ul li {
        padding-left: 1.5rem;
    }

    .legal-section ul li::before {
        width: 6px;
        height: 6px;
        top: 0.65rem;
    }
}
