
.remedy-highlights {
  background: linear-gradient(to right, #e6f2f0, #f8f8f8);
  padding: 80px 20px;
  text-align: center;
  animation: fadeIn 1.2s ease-in;
}

.remedy-highlights .container {
  max-width: 800px;
  margin: auto;
}

.remedy-highlights .headline {
  font-size: 2rem;
  font-weight: bold;
  color: #2b3e3e;
  margin-bottom: 20px;
}

.remedy-highlights .subtext {
  font-size: 1.1rem;
  color: #4e5f5e;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
  .remedy-highlights .headline {
    font-size: 1.6rem;
  }
  .remedy-highlights .subtext {
    font-size: 1rem;
  }
}
