/* 바로 FAQ 스타일 */
.baro-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
}

.baro-faq-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #0080FF;
  margin-bottom: 24px;
}

.baro-faq-description {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 48px;
  color: #666;
}

.baro-faq-accordion {
  margin-bottom: 48px;
}

.baro-faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.baro-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.baro-faq-arrow {
  transition: transform 0.3s ease;
}

.baro-faq-item.active .baro-faq-arrow {
  transform: rotate(180deg);
}

.baro-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.baro-faq-item.active .baro-faq-answer {
  max-height: 300px;
  padding: 0 16px 24px;
}

.baro-faq-more {
  text-align: center;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 500;
}

.baro-faq-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.baro-faq-phone, .baro-faq-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.baro-faq-divider {
  width: 1px;
  height: 24px;
  background-color: #E5E7EB;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .baro-faq-title {
    font-size: 28px;
  }
  
  .baro-faq-question {
    font-size: 16px;
    padding: 20px 12px;
  }
  
  .baro-faq-contact {
    flex-direction: column;
    gap: 16px;
  }
  
  .baro-faq-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .baro-faq-title {
    font-size: 24px;
  }
  
  .baro-faq-description {
    font-size: 14px;
  }
  
  .baro-faq-question {
    font-size: 15px;
    padding: 16px 8px;
  }
  
  .baro-faq-answer {
    font-size: 14px;
  }
  
  .baro-faq-phone, .baro-faq-hours {
    font-size: 14px;
  }
}