.about-page {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Intro Section */
.about-intro {
  text-align: center;
  margin-bottom: 60px;
}
.about-intro h1 {
  color: #b71c1c;
  font-size: 36px;
  margin-bottom: 15px;
}
.about-intro p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 25px;
}
.about-intro img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.mission, .vision {
  flex: 1 1 45%;
  background: #f9f9f9;
  padding: 25px;
  border-left: 5px solid #b71c1c;
  border-radius: 8px;
}
.mission h2, .vision h2 {
  color: #b71c1c;
  margin-bottom: 10px;
}

/* Core Values */
.values-section {
  text-align: center;
  margin-bottom: 60px;
}
.values-section h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.values-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.value-box {
  flex: 1 1 250px;
  background: #fff3f3;
  border-radius: 8px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-box i {
  font-size: 40px;
  color: #b71c1c;
  margin-bottom: 10px;
}
.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Team Section */
.team-section {
  text-align: center;
  margin-bottom: 60px;
}
.team-section h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.team-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.team-member {
  flex: 1 1 250px;
}
.team-member img {
  width: 100%;
  border-radius: 50%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 10px;
}
.team-member h3 {
  color: #b71c1c;
}

/* Facility Gallery */
.gallery-section {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-section h2 {
  color: #b71c1c;
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 200px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
  }
  .values-grid, .team-grid {
    flex-direction: column;
    align-items: center;
  }
}
