/* Hero Section */
.about-hero {
  background: url('../img/stage5.jpeg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.about-hero h1 {
  font-size: 3em;
  margin: 0;
}

.about-hero p {
  font-size: 1.3em;
  margin-top: 15px;
}

/* About Content Section */
.about-intro {
  background: #d9f0fc;
  padding: 80px 20px;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.5em;
  color: #004a99;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 1.15em;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 20px;
}

/* Mission, Vision, Values Grid */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.about-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 30px;
  width: 280px;
}

.about-box h3 {
  color: #004a99;
  margin-bottom: 10px;
}

.about-box p {
  font-size: 1em;
  color: #444;
}

/* CTA Section */
.about-cta {
  background: url('../img/stage6.jpeg') center/cover no-repeat;
  color: white;
  padding: 15vh;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.btn-about {
  display: inline-block;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #fff;
  padding: 14px 36px;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 118, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: linear-gradient(to right, #0072ff, #00c6ff);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 118, 255, 0.4);
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-box {
    width: 90%;
  }
}
