/* 고객센터 스타일 */

/* 카드 호버 효과 */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 공지사항 링크 스타일 */
.notice-link {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.notice-link:hover {
  color: var(--theme-primary);
}

.notice-title {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.notice-title:hover {
  color: var(--theme-primary);
  text-decoration: underline;
}

/* Q&A 링크 스타일 */
.qna-title {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.qna-title:hover {
  color: var(--theme-primary);
  text-decoration: underline;
}

/* 공지사항 내용 스타일 */
.notice-content {
  line-height: 1.8;
  color: #333;
}

/* Q&A 내용 스타일 */
.qna-content,
.qna-answer {
  line-height: 1.8;
  color: #333;
}

/* FAQ 아이템 스타일 */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 0.25rem;
}

.faq-question {
  padding: 1rem;
  background-color: #f8f9fa;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.faq-question.active:after {
  content: '\f106';
}

.faq-answer {
  padding: 1rem;
  display: none;
  border-top: 1px solid #eee;
}

/* 반응형 테이블 스타일 */
@media (max-width: 768px) {
  .table th,
  .table td {
    padding: 0.5rem;
  }
}
