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

/* Page Header - Shared */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-update {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

/* Legal Items */
.legal-item {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-item h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0066cc;
}

.legal-item h3 {
    font-size: 1.2rem;
    color: #0066cc;
    margin: 20px 0 15px;
}

.legal-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-item ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-item li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-item a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.legal-item a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Strong text */
.legal-item strong {
    color: #333;
    font-weight: 600;
}

/* Table for Privacy Policy */
.data-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.data-table th {
    background: #0066cc;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 40px 0;
    }
    
    .legal-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .legal-item h2 {
        font-size: 1.3rem;
    }
    
    .data-table {
        font-size: 14px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .legal-item ul {
        padding-left: 20px;
    }
    
    .data-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}