
.hero-section__title,
.hero-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
}
.hero-section__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-content {
  flex: 1;
  max-width: 65%;
}
.hero-content .hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.hero-visual {
  flex: 1;
  max-width: 35%;
  text-align: center;
}
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }
  .hero-section__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content,
  .hero-visual {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  .hero-title {
    font-size: 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content,
  .hero-visual {
    max-width: 48%;
  }
}
@media (max-width: 576px) {
  .hero-section__title {
    font-size: 1.8rem;
  }
  .hero-section__inner {
    gap: 0px;
  }
  .banner-text h1 {
    font-size: 1.75rem;
  }
}
