/* 기본 스타일 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.main-header {
  background-color: #007bc8;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header h1 {
  margin: 0;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav ul li {
  margin-left: 20px;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
}

/* 슬라이더 */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  background-color: #eaeaea;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  text-align: center;
  line-height: 200px;
  font-size: 18px;
  font-weight: bold;
  background-color: #007bc8;
  color: white;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* 뉴스 섹션 */
.news {
  padding: 20px;
  background-color: white;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-item {
  margin-bottom: 20px;
}

.news-item h3 {
  margin: 0;
  color: #007bc8;
}

/* 푸터 */
footer {
  background-color: #007bc8;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}


