/* Legal Pages CSS - Terms of Service & Privacy Policy */

/* Page Content Container */
.page-content {
    padding: 40px 0;
    background-color: #ffffff;
    min-height: 60vh;
}

.page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
}

/* Content Section */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-section strong {
    font-weight: 600;
    color: #212529;
}

/* Contact Information Styling */
.content-section p:has(strong) {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        padding: 20px 0;
    }
    
    .page-content .container {
        padding: 0 15px;
    }
    
    .page-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
        margin-top: 30px;
    }
    
    .content-section p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .content-section li {
        font-size: 0.95rem;
    }
    
    .content-section ul {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.2rem;
    }
    
    .content-section p {
        font-size: 0.9rem;
    }
    
    .content-section li {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .page-content {
        padding: 0;
    }
    
    .page-header {
        border-bottom: 1px solid #000;
    }
    
    .content-section h2 {
        border-bottom: 1px solid #000;
        page-break-after: avoid;
    }
    
    .content-section p,
    .content-section li {
        color: #000;
    }
}
