/* Simple Legal Pages Styling */

/* Breadcrumb */
.legal-breadcrumb {
    background: #f9fafb;
    padding: 90px 0 15px;
}

.legal-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.legal-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6b7280;
}

.legal-breadcrumb .breadcrumb-item a {
    color: #1a73e8;
    text-decoration: none;
}

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

.legal-breadcrumb .breadcrumb-item.active {
    color: #4b5563;
}

/* Legal Header */
.legal-header {
    background: #ffffff;
    padding: 25px 0 20px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.legal-header .last-updated {
    font-size: 0.875rem;
    color: #6b7280;
}

.legal-content {
    padding: 30px 0 50px;
    background: #ffffff;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content-wrapper h2:first-child {
    margin-top: 0;
}

.legal-content-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content-wrapper h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-content-wrapper ul,
.legal-content-wrapper ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.legal-content-wrapper li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.legal-content-wrapper strong {
    color: #1f2937;
    font-weight: 600;
}

.legal-content-wrapper a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-content-wrapper a:hover {
    color: #0d47a1;
}

@media (max-width: 768px) {
    .legal-header {
        padding: 80px 0 30px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 40px 0 60px;
    }

    .legal-content-wrapper h2 {
        font-size: 1.5rem;
    }

    .legal-content-wrapper h3 {
        font-size: 1.125rem;
    }
}

@media print {
    .legal-header {
        padding: 20px 0;
        border-bottom: 2px solid #000;
    }

    header,
    footer,
    nav {
        display: none;
    }

    .legal-content {
        padding: 20px 0;
    }

    .legal-content-wrapper a {
        color: #000;
        text-decoration: underline;
    }
}
