/* Terms of Service Page Styles */

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Content Section */
.content-section {
    padding: 100px 0 80px;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.content-header {
    margin-bottom: 3rem;
}

.content-header h1 {
    color: #333;
    margin-bottom: 1rem;
}

.content-body {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Terms Sections */
.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.terms-section h2 .material-icons {
    margin-right: 0.5rem;
}

.terms-section h4 {
    color: #495057;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-section p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.terms-section ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section ul li {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.terms-section ul li strong {
    color: #495057;
}

/* Contact Info */
.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info .material-icons {
    margin-right: 0.5rem;
    font-size: 20px;
}

.contact-info a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        padding: 120px 0 40px;
    }
    
    .content-body {
        padding: 1.5rem;
    }
    
    .content-header h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .terms-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section ul {
        padding-left: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

