/* Terms Container */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.top-bar {
    right: 0;
}

.main-content {
    margin-right: 0;
}

.terms-header {
    font-size: 32px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.terms-updated {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

/* Terms Navigation */
.terms-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0;
    overflow-x: auto;
}

.terms-tab {
    padding: 12px 20px;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.terms-tab:hover {
    color: #e0e0e0;
}

.terms-tab.active {
    color: #e0e0e0;
    border-bottom-color: #e0e0e0;
    font-weight: 500;
}

/* Terms Content */
.terms-content {
    padding: 20px 0;
}

.terms-section {
    display: none;
}

.terms-section.active {
    display: block;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.terms-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    margin-top: 24px;
    margin-bottom: 12px;
}

.terms-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 16px;
}

.terms-section ul {
    margin: 12px 0 16px 20px;
    padding: 0;
}

.terms-section li {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-header {
        font-size: 26px;
    }
    
    .terms-nav {
        gap: 4px;
    }
    
    .terms-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .terms-section h2 {
        font-size: 20px;
    }
    
    .terms-section h3 {
        font-size: 16px;
    }
}
