.other-visual {
  height: 35vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f6b93b 0%, #e58e26 100%);
  margin-bottom: 3rem;
}
.other-visual .sub-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0 1rem;
  max-width: 90%;
}
.other-visual .visual-lead {
  color: #fff;
  opacity: 0.95;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.info-section {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2rem 1.6rem;
  margin-bottom: 2.4rem;
  text-align: center;
}
.info-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
.info-section p {
  margin-bottom: 1.2rem;
  color: var(--brown);
}

.action-button {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.action-button:hover {
  opacity: 0.85;
}

@media (max-width: 520px) {
  .info-section {
    padding: 1.6rem 1.2rem;
  }
}
