
.hero {
  background: linear-gradient(to bottom right, #7ab4ea, #dceaf6);
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
}

.therapy-info, .therapy-target, .cta {
  padding: 3rem 1rem;
}

.therapy-info .container, .therapy-target .container, .cta .container {
  max-width: 900px;
  margin: 0 auto;
}

.therapy-info h2, .therapy-target h2, .cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.therapy-info p, .therapy-target p, .therapy-target ul {
  font-size: 1rem;
  line-height: 1.7;
}

.therapy-target {
  background: #f6f8fa;
  border-radius: 12px;
}

.therapy-target ul {
  list-style: disc inside;
  margin-top: 0.5rem;
}

.slogan {
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  border-left: 3px solid #ddd;
  padding-left: 1rem;
}

.cta {
  background: #f6f8fa;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary, #7ab4ea);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent, #3b6ea5);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
}
