/* 이용안내 페이지 스타일 */
.guide-container {
  max-width: 900px;
  margin: 0 auto;
}

.guide-section {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.guide-section h2 {
  color: var(--theme-primary);
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.guide-section h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #444;
}

.step-box {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.step-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.step-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: var(--theme-primary);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-right: 10px;
  font-weight: bold;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question:before {
  content: 'Q. ';
  color: var(--theme-primary);
  font-weight: bold;
}

.faq-answer {
  padding: 10px 0 10px 20px;
  color: #555;
  display: none;
}

.faq-answer:before {
  content: 'A. ';
  color: #f26666;
  font-weight: bold;
  margin-left: -20px;
}

.faq-question.active {
  background-color: #f0f0f0;
}

/* 고객센터 섹션 스타일 */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 모바일 반응형 스타일 */
@media (max-width: 767.98px) {
  .step-box {
    padding: 15px;
  }

  .guide-section {
    padding: 15px;
  }
}
