/* Tutorial styles - Simple design */
.tutorial-section {
  background: #fafbfc;
  padding: 80px 0;
  margin-top: 60px;
  border-top: 1px solid #e1e8ed;
}

.tutorial-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tutorial-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.tutorial-subtitle {
  text-align: center;
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.tutorial-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  position: relative;
}

.tutorial-card:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight-card {
  background: #4f46e5;
  color: white;
  border-color: #4338ca;
}

.highlight-card:hover {
  background: #4338ca;
  border-color: #3730a3;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.tutorial-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-card h3 {
  color: white;
}

.tutorial-card ul,
.tutorial-card ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.tutorial-card li {
  padding: 8px 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.tutorial-card ul li:before {
  content: "•";
  color: #4f46e5;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.tutorial-card ol {
  counter-reset: step-counter;
}

.tutorial-card ol li {
  counter-increment: step-counter;
}

.tutorial-card ol li:before {
  content: counter(step-counter);
  background: #4f46e5;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 10px;
}

.highlight-card li {
  color: rgba(255, 255, 255, 0.9);
}

.highlight-card ul li:before {
  color: rgba(255, 255, 255, 0.8);
}

.highlight-card ol li:before {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* FAQ styles */
.faq-section {
  background: white;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  margin-top: 40px;
}

.faq-section h3 {
  font-size: 1.5rem;
  color: #1a202c;
  margin-bottom: 32px;
  font-weight: 600;
  text-align: center;
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f7fafc;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 1rem;
}

.faq-answer {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .tutorial-section {
    padding: 60px 0;
  }
  
  .tutorial-section .container {
    padding: 0 16px;
  }
  
  .tutorial-section h2 {
    font-size: 1.8rem;
  }
  
  .tutorial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tutorial-card {
    padding: 24px;
  }
  
  .faq-section {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .tutorial-section h2 {
    font-size: 1.6rem;
  }
  
  .tutorial-card {
    padding: 20px;
  }
  
  .card-icon {
    font-size: 1.5rem;
  }
}