.cardiology-page {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Intro Section */
.cardiology-intro {
  text-align: center;
  margin-bottom: 60px;
}
.cardiology-intro h1 {
  color: #b71c1c;
  font-size: 36px;
  margin-bottom: 15px;
}
.cardiology-intro p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 25px;
}
.cardiology-intro img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Services Section */
.cardiology-services {
  text-align: center;
  margin-bottom: 60px;
}
.cardiology-services h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.cardiology-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.cardiology-card {
  flex: 1 1 250px;
  background: #fff3f3;
  border-radius: 8px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cardiology-card i {
  font-size: 40px;
  color: #b71c1c;
  margin-bottom: 10px;
}
.cardiology-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Specialists Section */
.cardiology-specialists {
  text-align: center;
  margin-bottom: 60px;
}
.cardiology-specialists h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.specialists-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.specialist {
  flex: 1 1 250px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
}
.specialist img {
  width: 100%;
  border-radius: 50%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 10px;
}
.specialist h3 {
  color: #b71c1c;
  margin-bottom: 5px;
}

/* Technology Section */
.cardiology-technology {
  text-align: center;
  margin-bottom: 60px;
}
.cardiology-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 */
.cardiology-care {
  background: #fef6f6;
  padding: 30px 20px;
  border-left: 5px solid #b71c1c;
  border-radius: 8px;
  margin-bottom: 60px;
}
.cardiology-care h2 {
  color: #b71c1c;
  margin-bottom: 15px;
}
.cardiology-care ul {
  list-style: none;
  padding: 0;
}
.cardiology-care li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .cardiology-cards, .specialists-grid, .tech-grid {
    flex-direction: column;
    align-items: center;
  }
}
