/* Policy Content Styling - All Heading Levels and Rich Text Elements */

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6 {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #2c3e50;
}

/* H1 - Largest (40px) - Main Page Titles */
.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    color: #1a1a1a;
}

/* H2 - Large (32px) - Major Sections */
.policy-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

/* H3 - Medium (28px) - Subsections */
.policy-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #34495e;
}

.policy-content h4 {
    font-size: 1.5rem;
}

.policy-content h5 {
    font-size: 1.25rem;
}

.policy-content h6 {
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul li,
.policy-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
    background-color: #f8f9fa;
    padding: 1rem;
}

.policy-content code {
    background-color: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.policy-content pre {
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1rem 0;
}

.policy-content pre code {
    background-color: transparent;
    padding: 0;
}

.policy-content a {
    color: #3498db;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #2980b9;
}

.policy-content strong {
    font-weight: 700;
}

.policy-content em {
    font-style: italic;
}

.policy-content u {
    text-decoration: underline;
}

.policy-content s,
.policy-content strike {
    text-decoration: line-through;
}

/* Responsive heading sizes */
@media (max-width: 768px) {
    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.75rem;
    }

    .policy-content h3 {
        font-size: 1.5rem;
    }

    .policy-content h4 {
        font-size: 1.25rem;
    }

    .policy-content h5 {
        font-size: 1.1rem;
    }

    .policy-content h6 {
        font-size: 1rem;
    }
}
