/* Legal Pages (Terms & Privacy) Styles */

.legal-section {
    line-height: 1.8;
}

.legal-section h3 {
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-top: 40px;
}

.legal-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.legal-list {
    list-style-type: disc;
    padding-left: 20px;
}

.legal-list li {
    color: #666;
}

.legal-highlight {
    border-left-width: 4px !important;
    font-style: italic;
    color: #444;
}

.legal-subsection h4 {
    font-weight: 600;
    color: var(--secondary);
}

.legal-note {
    border-radius: 8px;
    font-size: 0.9rem;
}

.terms-content p,
.privacy-content p {
    color: #555;
    text-align: justify;
}

@media (max-width: 768px) {
    .legal-section h3 {
        font-size: 1.25rem;
    }
}