/* 상단 배너 스타일 */
.top-banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #1a6572;
}

.top-banner-content {
  /* display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem; */
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
}

.top-banner-content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  text-align: center;
  color: white;
  flex: 1;
}

.banner-text h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.banner-text p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
  line-height: 1.2;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .top-banner-content img {
    content: url('../images/topBanner_m.webp');
  }

  .banner-text h2 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .banner-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .banner-text h2 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .banner-text p {
    font-size: 16px;
  }
}
