/* 배너 섹션 */
.banner {
  background-color: #faf8f8;
  border-radius: 12px;
  padding: 40px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-text h3 {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  margin-bottom: 10px;
}
.banner-text h1 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
}
.banner-text h1 span {
  color: #982532;
}
.banner-images {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-banner {
  background: linear-gradient(135deg, #614e9c, #7476d4);
  border: none;
  padding: 46px 0;
}

#main-banner-text {
  display: block; /* 블록 요소로 변경 */
  width: 100%; /* 너비를 꽉 채움 */
  text-align: center;
  color: #ffffff;
}

#main-banner-text h3 {
  margin: 10px 0;
  margin-bottom: 0;
  color: #ffffff;
  padding: 0 30px;
}

#main-btn-start {
  /* 배경 및 테두리 */
  background-color: #ffffff;
  color: #614e9c; /* 배너 시작색과 맞춘 보라색 글자 */
  border: none;
  border-radius: 25px; /* 둥근 버튼 모양 */

  /* 크기 및 여백 */
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;

  /* 효과 */
  cursor: pointer;
  transition: all 0.3s ease; /* 부드러운 호버 효과 */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 미세한 그림자 */

  /* 위치 (중앙 정렬을 위해 필요시 추가) */
  margin-top: 20px;
  display: inline-block;
}

#main-btn-start:hover {
  background-color: #f0f0f0; /* 살짝 회색으로 변경 */
  transform: translateY(-2px); /* 살짝 위로 떠오르는 효과 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .banner-text h1 {
    font-size: 22px;
  }

  .banner-text h3 {
    font-size: 14px;
  }

  .banner-images {
    width: 80px;
  }
}