/* Text Pages Styling - For Terms of Service, Privacy Policy, etc. */

/* Full page white background for light theme */
body {
    background-color: #ffffff !important;
}

.text-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: calc(100vh - 200px); /* Ensure full height coverage */
}

.text-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.text-page-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.text-page-content h2 {
    font-size: 1.4em;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ecf0f1;
}

.text-page-content h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
}

.text-page-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.text-page-content ul, 
.text-page-content ol {
    margin-bottom: 16px;
    padding-left: 30px;
}

.text-page-content li {
    margin-bottom: 8px;
}

.text-page-content strong {
    font-weight: 600;
    color: #2c3e50;
}

.text-page-content em {
    font-style: italic;
    color: #555;
}

.important-notice {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.important-notice strong {
    color: #2980b9;
}

.contact-info {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9em;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive design */
@media (max-width: 768px) {
    .text-page-container {
        padding: 20px 15px;
    }
    
    .text-page-title {
        font-size: 2em;
    }
    
    .text-page-content {
        font-size: 0.95em;
    }
}

/* Print styles */
@media print {
    .text-page-container {
        max-width: none;
        padding: 0;
    }
    
    .text-page-title {
        color: #000;
    }
    
    .text-page-content h2,
    .text-page-content h3 {
        color: #000;
    }
} 