:root{--build-id:"af485221-b23f-41ae-839f-299056a63e27";}
/* 공통 스타일 - 세미화이트모드 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Malgun Gothic", sans-serif;
  background-color: #f2f4f7;
  color: #312e81;
  line-height: 1.6;
}

/* 헤더 및 네비게이션 */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d97706;
  text-decoration: none;
}

/* CSS-only 햄버거 메뉴를 위한 checkbox 숨김 */
#menu-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #312e81;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d97706;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #312e81;
  cursor: pointer;
}

/* 모바일 네비게이션 - CSS-only 토글 구현 */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -250px;
    top: 0;
    flex-direction: column;
    background-color: #ffffff;
    width: 250px;
    height: 100vh;
    padding: 5rem 2rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    gap: 1.5rem;
  }

  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* 메인 컨텐츠 */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 4rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #312e81;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #312e81;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #312e81;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* CTA 버튼 */
.cta-button {
  display: inline-block;
  background-color: #d97706;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #b45309;
}

.cta-secondary {
  background-color: #312e81;
}

.cta-secondary:hover {
  background-color: #1e1b4b;
}

/* 카드 레이아웃 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.card h3 {
  color: #d97706;
  margin-top: 0;
}

/* 히어로 섹션 */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f2f4f7 100%);
  border-radius: 16px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #4b5563;
}

/* 비디오 컨테이너 */
.video-container {
  background-color: #e5e7eb;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin: 2rem 0;
}

.video-placeholder {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* 리스트 스타일 */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d97706;
  font-weight: 700;
}

/* 테이블 */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background-color: #312e81;
  color: #ffffff;
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

/* FAQ 아코디언 스타일 */
.faq-item {
  background-color: #ffffff;
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: #312e81;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #4b5563;
  line-height: 1.7;
}

/* 리뷰 카드 */
.review-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: #d97706;
  margin-top: 1rem;
}

/* 연락처 정보 */
.contact-info {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #312e81;
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  color: #d97706;
}

/* 반응형 */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  main {
    padding: 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}