body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  background: #f4f5f7;
  color: #2c2c2c;
  line-height: 1.7;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 상단 히어로 영역 */
header.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 60px 20px;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-sub {
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
}

/* 섹션 */
section {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 32px;
  margin-top: 40px;
  transition: transform 0.2s ease;
}

section:hover {
  transform: translateY(-2px);
}

section h2 {
  color: #c2185b;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

section p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* CTA 버튼 */
.cta-button {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: linear-gradient(to right, #c2185b, #e91e63);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(233, 30, 99, 0.2);
  transition: background 0.3s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #ad1457, #d81b60);
  box-shadow: 0 6px 12px rgba(233, 30, 99, 0.3);
}

/* 푸터 */
.site-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  padding: 30px 0;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.site-footer a {
  color: #c2185b;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  section {
    padding: 24px;
  }
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
}

.lang-switch select {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
}