/* How It Works Section CSS */
.how-it-works {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.how-it-works .section-title {
  color: var(--text-light);
}

.how-it-works-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.how-it-works-image {
  flex: 1;
  min-width: 300px;
}

.how-it-works-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
}

.how-it-works-steps {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-text {
  color: var(--text-gray);
  line-height: 1.6;
}

.how-it-works-steps .btn {
  align-self: flex-start;
  margin-top: 16px;
}

.how-it-works .section-title {
  margin-top: 60px;
}