/* Legal pages styles (privacy, terms, cookies, legal_notice) */
.legal-content {
    font-family: "Times New Roman", Times, serif;
    line-height: 1.8;
    color: #333;
}

.legal-content h1 {
    color: var(--theme-primary, #886ab5);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.3;
}

.legal-content h2 {
    color: var(--theme-primary, #886ab5);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.legal-content h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.legal-content p {
    margin-bottom: 1.5em;
    line-height: 1.8;
    color: #333;
}

.legal-content ul {
    margin-bottom: 1.5em;
    padding-left: 2rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.75em;
    line-height: 1.8;
    color: #333;
    padding-left: 0.5rem;
}

.legal-content ol {
    margin-bottom: 1.5em;
    padding-left: 2rem;
    list-style-type: decimal;
}

.legal-content ol li {
    margin-bottom: 0.75em;
    line-height: 1.8;
    color: #333;
    padding-left: 0.5rem;
}

.legal-content a {
    color: var(--theme-primary, #886ab5);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-content a:hover {
    color: #6b4d9a;
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 600;
    color: #2d3748;
}

.legal-content br {
    line-height: 1.8;
}

/* Ensure proper spacing for sections */
.legal-content > *:first-child {
    margin-top: 0;
}

.legal-content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem !important;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h4 {
        font-size: 1.1rem;
    }
}

