/* Terms of Service Page Styles */
.terms-of-service-section {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
    padding-top: 100px !important;
}

.terms-of-service-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin-bottom: 2rem;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a56db;
    margin-bottom: 1rem;
}

.terms-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0;
}

.terms-content-body {
    text-align: left;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #1a56db;
    border-radius: 2px;
}

.section-content {
    color: #4b5563;
    line-height: 1.7;
}

.section-content a {
    color: #1a56db;
    text-decoration: none;
    font-weight: 500;
}

.section-content a:hover {
    text-decoration: underline;
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 1rem 0;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #1a56db;
    font-weight: bold;
    font-size: 1.25rem;
}

.contact-info {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #1a56db;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #374151;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-of-service-section {
        padding-top: 80px !important;
    }
    
    .terms-of-service-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .subsection-title {
        font-size: 1rem;
    }
    
    .terms-list li {
        padding-left: 1.5rem;
    }
    
    .terms-list li::before {
        left: 0.25rem;
    }
}

@media (max-width: 576px) {
    .terms-of-service-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem 2rem 0.5rem;
    }
    
    .terms-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.125rem;
    }
    
    .section-title::before {
        height: 20px;
    }
}

/* Print Styles */
@media print {
    .terms-of-service-section {
        background: white !important;
        padding-top: 0 !important;
    }
    
    .terms-of-service-content {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .section-title {
        color: #1f2937 !important;
    }
    
    .section-title::before {
        background: #1a56db !important;
    }
    
    .section-content a {
        color: #1a56db !important;
    }
}
