/* Hero Section */
.chronic-hero {
  background: linear-gradient(135deg, #ffb3c6, #bde0fe);
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 3rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.6;
}

/* Intro */
.intro {
  background: #f8f9fb;
  padding: 1rem 1rem;
  text-align: justify;
}

.intro-container {

  margin: 0 auto;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

/* Content Sections */
.content-sections {
  padding: 1rem 1rem;
}

.content-row {
  display: flex;
  align-items: center;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
   justify-content: space-between;
}

.content-row.show {
  opacity: 1;
  transform: translateY(0);
}

.content-row .content-text {
  flex: 6;  
  padding: 1rem;
}

.content-row .content-image {
  flex: 4;  
  padding: 1rem;
}

/* Animation for left/right */
.from-left {
  transform: translateX(-100px);
}
.from-right {
  transform: translateX(100px);
}
.show.from-left,
.show.from-right {
  transform: translateX(0);
  opacity: 1;
}

/* Reverse rows keep image on right */
.content-row.reverse {
  flex-direction: row-reverse;
}

.content-image {
  flex: 0.3;
}

.content-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.content-text {
  flex: 0.7;
}

.content-text h2 {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 1rem;
}

.content-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .content-row,
  .content-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .content-image {
    flex: 1;
    max-width: 350px;
    margin: 0 auto 1.5rem;
  }

  .content-text {
    flex: 1;
  }
}



.other-care-section {
  margin-top: 3rem;
}

.other-care-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #444;
  text-align: center;
}

.care-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.care-card {
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.care-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

