
.herbal-tea-highlight {
  padding: 80px 20px;
  background-color: #f7fdfc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.image-wrapper {
  flex: 1 1 500px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.025);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.text-wrapper {
  flex: 1 1 500px;
}

.text-wrapper h2 {
  font-size: 2rem;
  color: #2b3e3e;
  margin-bottom: 10px;
  font-weight: 700;
}

.text-wrapper .subheading {
  font-size: 1.1rem;
  color: #4e5f5e;
  margin-bottom: 18px;
  font-weight: 500;
}

.text-wrapper p {
  font-size: 1rem;
  color: #4e5f5e;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  background-color: #2c4d4d;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #3a5f5f;
  transform: translateY(-2px);
}

/* Fade-in Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .text-wrapper h2 {
    font-size: 1.6rem;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 14px 30px;
  }
}
