/* CSS Document */

/* ====================== 폼 요소 ====================== */
.option-form {
  margin-top: 50px;
  text-align: right;
}

.policy-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.privacy-label {
  font-size: 14px;
  color: #222;
  white-space: nowrap;
}

.select-wrap {
  position: relative;
  width: 360px;
}

.custom-select {
  margin: 0;
  padding: 0 40px 0 15px;
  width: 100%;
  height: 48px;
  font-size: 14px;
  color: #222;
  border: 1px solid #efefef;
  border-radius: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select:hover {
  border-color: #ccc;
  background-color: #f9f9f9;
}

.select-wrap .xi-arrow-down {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  color: #666;
}

.submit-btn {
  height: 48px;
  padding: 0 20px;
  font-size: 14px;
  background-color: #222;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background-color: #444;
}


/* ====================== 섹션 타이틀 ====================== */
.section-title {
  padding-top: 70px;
  text-align: center;
}

.section-title > h3 {
  font-size: 30px;
  color: #212121;
}


/* ====================== 개인정보 페이지 레이아웃 ====================== */
.privacy-container {
  margin: 70px auto 150px;
  max-width: 1400px;
}

.privacy-container .desc {
  margin-top: 31px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.3px;
  color: #666;
}


/* ====================== 표 스타일 ====================== */
.privacy-table {
  width: 80%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 15px 0;
  text-align: center;
}

.privacy-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 0);
}

.privacy-table col {
  width: 180px;
}

.privacy-table th,
.privacy-table td {
  border: 1px solid #e5e5e5;
  padding: 12px;
  vertical-align: middle;
  font-size: 15px;
}

.privacy-table th {
  background-color: #f8f8f8;
  font-weight: 600;
  color: #666;
}


.privacy-container h4 {
  padding-top: 40px; /* 원하는 값으로 조절 */
  font-size: 18px;
  font-weight: 600;
}

/* .privacy-container p {
    width: 90%;
} */

.sub-bullet {
  margin-left: 20px;  /* or padding-left */
  text-indent: -10px; /* 번호 정렬 안 밀어지게 하고 싶을 때 */
  line-height: 1.6;
}



.table-container {
  width: 100%;
  max-width: 100%;
}

.privacy-table {
  border-collapse: collapse;
  font-size: 15px;
  text-align: center;
  table-layout: fixed;
  word-break: break-word;
  width: 80%; /* 기본은 80% */
}

.privacy-table th,
.privacy-table td {
  border: 1px solid #e5e5e5;
  padding: 12px;
  vertical-align: middle;
  font-size: 14px;
}

.privacy-table th {
  background-color: #f8f8f8;
  font-weight: 600;
  color: #666;
}

/* 800px 미만일 때는 100%로 */
@media screen and (max-width: 1024px) {
  .privacy-table {
    width: 100%;
  }

  .privacy-table th,
  .privacy-table td {
    font-size: 13px;
    padding: 10px;
  }
}
