/* Terms of Service Page Styles */

.terms-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
.terms-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-current {
    color: #6c757d;
    font-weight: 500;
}

/* Main Content */
.terms-main {
    background: white;
    min-height: 60vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 20px;
    line-height: 1.6;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.terms-section p {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.terms-section ul {
    color: #495057;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.terms-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.terms-section a:hover {
    text-decoration: underline;
}

/* Footer */
.terms-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-content p {
    color: #6c757d;
    margin: 0 0 1rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Legal Disclaimer */
.legal-disclaimer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 15px 0;
    margin-top: 20px;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.legal-content p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.legal-content a {
    color: #007bff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .terms-content {
        padding: 2rem 15px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .breadcrumb-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .terms-content {
        padding: 1.5rem 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .terms-main {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .terms-section h2 {
        color: #e0e0e0;
        border-bottom-color: #4a5568;
    }
    
    .terms-section p,
    .terms-section li {
        color: #cbd5e0;
    }
    
    .terms-footer {
        background: #2d3748;
        border-top-color: #4a5568;
    }
    
    .footer-content p {
        color: #a0aec0;
    }
    
    .legal-disclaimer {
        background-color: #2d3748;
        border-top-color: #4a5568;
    }
    
    .legal-content p {
        color: #a0aec0;
    }
}
