.banner-section {
  background: var(--bg-band);
  padding: 80px 0;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.banner-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-page);
  line-height: 1.3;
  margin: 0;
  max-width: 700px;
  text-align: center;
  text-transform: none;
  padding-bottom: 20px;
}

.banner-btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--text-page);
  color: var(--text-page);
  background: transparent;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}

.banner-btn-outline:hover {
  background: var(--text-page);
  color: var(--bg-band);
}

/* Responsive */
@media (max-width: 768px) {
  .banner-section {
    padding: 60px 0;
  }

  .banner-container {
    padding: 0 24px;
  }

  .banner-title {
    font-size: 22px;
  }
}
