body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fc;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero */
.hero-about {
  background: linear-gradient(rgba(0, 102, 204, 0.7), rgba(0, 102, 204, 0.7)), url('images/healthcare-hero.jpg') no-repeat center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-about h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-about p {
  font-size: 1.2em;
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
}

.about-text h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

/* Mission & Vision */
.mission-vision {
  background: #fff;
  padding: 60px 0;
}

.mv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mv-card {
  flex: 1;
  background: #eaf4ff;
  padding: 30px;
  border-radius: 10px;
}

/* Why Choose Us */
.why-choose {
  background-color: #f1f8ff;
  padding: 60px 0;
  text-align: center;
}

.why-choose h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.features-list li {
  margin: 10px 0;
  font-size: 1.1em;
}

/* Approach */
.approach {
  background-color: #fff;
  padding: 60px 0;
}

/* Call to Action */
.cta-about {
  background-color: #007bff;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-about h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.cta-about .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: white;
  color: #007bff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-about .cta-button:hover {
  background: #e6e6e6;
}
