/* style/index.css */
/* 페이지 전체 스타일 코드 - 주의: 모든 선택자는 페이지 전缀로 시작해야 합니다 */
.page-index {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333333;
  background-color: #E5E5E5;
}

.page-index .hero-section {
  background: linear-gradient(135deg, #333333, #E5E5E5);
  padding: 80px 0;
  text-align: center;
}

.page-index .hero-section h1 {
  font-size: 36px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-index .hero-section p {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.page-index .hero-section .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #333333;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-index .hero-section .btn:hover {
  background-color: #333333;
  color: #FFFFFF;
}

.page-index .hero-section .hero-image {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.page-index .content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.page-index .content-area h2 {
  font-size: 24px;
  color: #333333;
  margin-bottom: 20px;
}

.page-index .content-area p {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-index .content-area .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #333333;
  border: 2px solid #333333;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-index .content-area .btn:hover {
  background-color: #FFFFFF;
  color: #333333;
}

.page-index .content-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index .content-area ul li {
  margin-bottom: 10px;
}

.page-index .content-area ul li a {
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index .content-area ul li a:hover {
  color: #333333;
  text-decoration: underline;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .page-index .hero-section {
    padding: 40px 0;
  }

  .page-index .hero-section h1 {
    font-size: 28px;
  }

  .page-index .hero-section p {
    font-size: 14px;
  }

  .page-index .content-area {
    padding: 20px;
  }

  .page-index .content-area h2 {
    font-size: 20px;
  }

  .page-index .content-area p {
    font-size: 14px;
  }
}