.terms-container {
    overflow-y: auto;
}

.terms-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.terms-content {
    max-width: 90%;
    margin: 0 auto;
    background-color: var(--base-gray-percent);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.terms-section {
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-section:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.terms-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-subsection-title {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    margin: 1.25rem 0 0.75rem 0;
    opacity: 0.9;
}

.terms-text {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 1rem;
}

.terms-list {
    padding-left: 0;
}

.terms-list-item {
    position: relative;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

@media (max-width: 500px) {
    .terms-main-title {
        font-size: 1.75rem;
    }
    .terms-description {
        font-size: 16px;
    }
    .terms-section-title {
        font-size: 18px;
    }
    .terms-subsection-title {
        font-size: 16px;
    }
    .terms-text, 
    .terms-list-item {
        font-size: 14px;
    }
    .terms-section {
        padding: 1rem;
    }
}