.customer_center {
  background-color: #fff;
  margin-top: 165px;
}

.customer_center .inner {
  max-width: 1300px;
  margin: 0 auto;
}

.customer_center h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.customer_center p {
  font-size: 16px;
  color: #bfbfbf;
  text-align: center;
  margin-bottom: 50px;
}

/* Notice 섹션 스타일 */
.notice_section {
  margin-bottom: 50px;
}

.notice_section h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 49px;
}

.notice_table {
  width: 100%;
  border-collapse: collapse;
}

.notice_table thead th {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}

.notice_table tbody tr {
  border-bottom: 1px solid #ededed;
}

.notice_table td {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 0;
}

.notice_table td:first-child {
  width: 10%;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}

.notice_table td:last-child {
  width: 20%;
  text-align: right;
}

.faq_section {
  margin-top: 50px;
}

.faq_section h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 49px;
}

.faq_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq_list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #ededed;
  padding: 15px 0;
}

.faq_question {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}
.left2 {
  margin-left: 60px;
  font-weight: 400;
  font-size: 18px;
}
.faq_question img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  margin-left: 1010px;
}

.faq_answer {
  font-size: 14px;
  color: #0056b3; /* 답변 텍스트 색상 */
  background-color: #f4faff; /* 연한 파란 배경 */
  padding: 50px 10px;
  margin-top: 10px;
  border-radius: 4px;
  display: none;
  width: 1400px;
  box-sizing: border-box;
  line-height: 1.6;
}
.faq_answer span {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

/* 열린 상태 스타일 */
.faq_list li.open .faq_answer {
  display: block;
}

.faq_list li.open .faq_question img {
  transform: rotate(180deg);
}
