.ai-agent-onboarding {
  background-color: #f9fafb;
  padding: 30px 0;
  margin-top: 50px;
  border-top: 1px solid #e5e7eb;
  margin-top:20px; 
  padding: 30px 15px;
}

.ai-agent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  color: #374151;
  line-height: 1.6;
}

.ai-agent-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.ai-agent-intro {
  margin-bottom: 20px;
}

.ai-agent-intro p {
  margin: 8px 0;
  font-size: 14px;
}

.ai-agent-guide-link {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  margin: 8px 0;
  border-bottom: 1px dashed #2563eb;
}

.ai-agent-guide-link:hover {
  color: #1d4ed8;
  border-bottom: 1px solid #1d4ed8;
}

.ai-agent-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 25px 0 15px 0;
}

.ai-agent-step-card {
  background-color: #ffffff;
  border-left: 4px solid #2563eb;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ai-agent-step-card p {
  margin: 0;
  font-size: 14px;
}

.ai-agent-step-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.ai-agent-step-card a:hover {
  text-decoration: underline;
}

.ai-agent-process-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.ai-agent-process-list {
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
}

.ai-agent-process-list li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 5px;
}

.ai-agent-process-list li strong {
  color: #1f2937;
}

.completed-step {
  color: #10b981;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ai-agent-container {
    padding: 0 15px;
  }
  
  .ai-agent-title {
    font-size: 18px;
  }
  
  .ai-agent-subtitle, .ai-agent-process-title {
    font-size: 15px;
  }
  
  .ai-agent-step-card {
    padding: 12px 15px;
  }
}