/* Privacy Policy Page Styles */

.privacy-section {
    padding: 80px 0;
    width: 100%;
}

.privacy-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.privacy-section .sec-title {
    margin-bottom: 50px;
}

.privacy-section .sec-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.privacy-section .sec-title .subtitle {
    font-size: 16px;
    font-weight: 600;
}

.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.privacy-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

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

.privacy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p,
.privacy-content .body-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-content ul li {
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #555;
    position: relative;
    line-height: 1.8;
}

.privacy-content ul li:before {
    content: "✓";
    position: absolute;
    left: 10px;
    top: 8px;
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
}

.privacy-content a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: #004999;
    text-decoration: underline;
}

.privacy-content strong {
    color: #333;
    font-weight: 600;
}

.privacy-content em {
    font-style: italic;
    color: #666;
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.privacy-content table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border: 1px solid #dee2e6;
}

.privacy-content table td {
    padding: 15px;
    border: 1px solid #dee2e6;
    color: #555;
    line-height: 1.6;
}

.privacy-content table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Specific styles for privacy data table */
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.privacy-table thead {
    background-color: #f8f9fa;
}

.privacy-table th {
    border: 1px solid #000;
    padding: 12px;
    text-align: left;
    font-weight: bold;
    color: #595959;
}

.privacy-table td {
    border: 1px solid #000;
    padding: 12px;
    color: #595959;
    vertical-align: top;
}

.privacy-table tbody tr:hover {
    background-color: #e9ecef;
}

.toc-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.toc-section h2 {
    border-bottom: none;
    margin-top: 0;
}

.toc-section a {
    display: block;
    padding: 8px 0;
    color: #0066cc;
    font-size: 15px;
}

.toc-section a:hover {
    padding-left: 10px;
    transition: all 0.3s ease;
}

.summary-box {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.summary-box h2 {
    border-bottom: none;
    margin-top: 0;
    color: #0066cc;
}

.summary-box p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0;
    }
    
    .privacy-content {
        padding: 25px 15px;
    }
    
    .privacy-section .sec-title h1 {
        font-size: 32px;
    }
    
    .privacy-content h2 {
        font-size: 24px;
    }
    
    .privacy-content h3 {
        font-size: 20px;
    }
    
    .privacy-content table {
        font-size: 13px;
    }
    
    .privacy-content table th,
    .privacy-content table td {
        padding: 10px;
    }
}

/* RTL Support */
html[dir="rtl"] .privacy-content ul li {
    padding: 10px 30px 10px 0;
}

html[dir="rtl"] .privacy-content ul li:before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .summary-box {
    border-left: none;
    border-right: 4px solid #0066cc;
}

html[dir="rtl"] .toc-section a:hover {
    padding-left: 0;
    padding-right: 10px;
}
