/* ===================================
   TrivoxTech - Legal Pages
   Privacy Policy & Terms and Conditions
   =================================== */

.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

.legal-header {
    margin-bottom: 50px;
    text-align: center;
}

.legal-body {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    color: var(--text-light);
}

body.light-theme .legal-body {
    border-color: rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ol,
.legal-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-section ol li,
.legal-section ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 10px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    padding-left: 30px;
    position: relative;
}

.legal-section ul li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 8px;
    position: absolute;
    left: 5px;
    top: 8px;
    color: var(--secondary-color);
}

.legal-section strong {
    color: var(--primary-color);
}

.contact-info {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}