/* body, 기본 폰트 설정 */
body {
  background-color: #f8f9fa;
  color: #212529;
  font-family: "Noto Sans KR", sans-serif;
  margin: 0;
  padding: 0;
}

/* 상단 비디오 배경 섹션 스타일 */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* 화면 전체 높이 */
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 비디오 위 투명 검정 레이어 */
  z-index: 1;
}

.video-section .content {
  position: relative;
  z-index: 2;
}

/* 크게 보여줄 문구 */
.headline-large {
  font-size: 3.5rem;     /* 폰트를 크게 조정 */
  font-weight: 700;
  line-height: 1.2;
}

/* 메인 컨텐츠 섹션 간격 */
section {
  padding: 60px 0;
}

/* 테이블 스타일(요금 안내) */
.table-custom thead {
  background-color: #f1f3f5;
}

.table-custom th,
.table-custom td {
  vertical-align: middle;
  text-align: center;
}

/* 푸터 */
.footer-dark {
  padding: 30px 0;
  background: #212529;
  color: #fff;
  text-align: center;
}
.footer-dark p {
  margin-bottom: 0.5rem;
}

