
body {
  font-family: 'Pretendard', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.steps-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.steps-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #333;
}

.steps-section .lead {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
margin-top: 6px;
margin-bottom: 70px;

}

.step {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 50px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step img {
  width: 180px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.step-text {
  padding: 30px;
}

.step-text h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
}

.bar{
  color: #859FB1;
  margin: 0 8px;
}

.step-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step {
    flex-direction: row; /* ✅ 모바일에서도 row 유지 */
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 20px;
  }

  .step img {
    width: 100px;         /* ✅ 이미지 너비 줄이기 */
    height: auto;
  }

  .step-text {
    padding: 0;
    flex: 1;
  }

  .step-text h3 {
    font-size: 1.1rem;
  }

  .step-text p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

