.chestcare-page {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Intro Section */
.chestcare-intro {
  text-align: center;
  margin-bottom: 60px;
}
.chestcare-intro h1 {
  color: #b71c1c;
  font-size: 36px;
  margin-bottom: 15px;
}
.chestcare-intro p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 25px;
}
.chestcare-intro img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Conditions Section */
.chestcare-conditions {
  text-align: center;
  margin-bottom: 60px;
}
.chestcare-conditions h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.condition-box {
  flex: 1 1 250px;
  background: #fff3f3;
  border-radius: 8px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.condition-box i {
  font-size: 40px;
  color: #b71c1c;
  margin-bottom: 10px;
}
.condition-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Experts Section */
.chestcare-experts {
  text-align: center;
  margin-bottom: 60px;
}
.chestcare-experts h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.experts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.expert {
  flex: 1 1 250px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
}
.expert img {
  width: 100%;
  border-radius: 50%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 10px;
}
.expert h3 {
  color: #b71c1c;
}

/* Technology Section */
.chestcare-technology {
  text-align: center;
  margin-bottom: 60px;
}
.chestcare-technology h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.tech-box {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.tech-box img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}
.tech-box h3 {
  color: #b71c1c;
  margin-bottom: 8px;
}

/* Care Section */
.chestcare-care {
  background: #fef6f6;
  padding: 30px 20px;
  border-left: 5px solid #b71c1c;
  border-radius: 8px;
  margin-bottom: 60px;
}
.chestcare-care h2 {
  color: #b71c1c;
  margin-bottom: 15px;
}
.chestcare-care ul {
  list-style: none;
  padding: 0;
}
.chestcare-care li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .conditions-grid, .experts-grid, .tech-grid {
    flex-direction: column;
    align-items: center;
  }
}
