.visual-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9edf3 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  overflow: hidden;
}

.visual-text-box {
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out;
}

.visual-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.visual-sub1 {
  font-size: 22px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 400;
}

.visual-sub2 {
  font-size: 22px;
  color: #777;
  font-weight: 300;
}

.visual-image-box {
  animation: fadeIn 1.5s ease-out;
}

.visual-image-box img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.visual-image-box img:hover {
  transform: scale(1.01);
}

.visual-cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.visual-cta-button:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* 애니메이션 정의 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 반응형 */
@media (max-width: 768px) {
  .visual-title {
    font-size: 32px;
  }

  .visual-sub1,
  .visual-sub2 {
    font-size: 18px;
  }

  .visual-banner {
    padding: 90px 15px;
  }

  .visual-cta-button {
    font-size: 15px;
    padding: 12px 24px;
  }
}
