/* 기본 */
body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  color: #222;
}

/* --- HERO 영역 --- */
.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero-image-wrap {
  position: relative;
  width: 1600px;
  border-radius: 6px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-text-box {
  position: absolute;
  left: 60px;
  bottom: 70px;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* --- WHY STIC 섹션 --- */
.why-section {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
}

.why-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 6px;
}

.why-label span {
  color: #c91f1f;
  font-weight: 700;
}

.why-title {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0;
}

.why-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-top: 12px;
}

/* --- Feature Cards --- */
.feature-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
}

.feature-cards {
  width: 1600px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.feature-card {
  width: 32%;
}

.feature-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

.feature-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

.feature-text {
  margin-top: 8px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}