/*--------------- Hero Section ---------------*/
.about-hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #eef7fb;
  padding: 4rem 1.5rem;
  text-align: center;
}

.about-hero-content {
  max-width: 56rem;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0b2b4c;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.75rem;
  color: #126782;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 48rem) {
  .about-hero {
    padding: 3rem 1rem;
  }

  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}

/*------------------------- Who We Are Section -------------------------*/
.who-we-are {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}

.who-container {
  max-width: 70rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image */
.who-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

/* Content */
.who-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #023047;
  margin-bottom: 0.75rem;
}

.who-content p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: #126782;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 48rem) {
  .who-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .who-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }

  .who-content p {
    font-size: 1rem;
    text-align: center;
  }
}

/*------------------- Vision & Mission Section -------------------*/
.vision-mission {
  background-color: #f7f9fc;
  padding: 4rem 1.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #023047;
  margin-bottom: 1.75rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vm-cards {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.vm-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
}

.vm-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0b2b4c;
  margin-bottom: 1rem;
}

.vm-card p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #0a6aa1;
}

@media (max-width: 48rem) {
  .vm-cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .vm-card p {
    font-size: 1rem;
  }
}

/*---------------- Our Core Values Section ----------------*/
.core-values {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}

.section-title.center {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #023047;
  margin-bottom: 1.75rem;
}

.values-grid {
  max-width: 38rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.value-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
}

.value-card img {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0b2b4c;
}

@media (max-width: 48rem) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-card p {
    font-size: 1rem;
  }
}

/*------------------- Message from the Principal Section  -------------------*/
.principal-message {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}

.principal-container {
  max-width: 70rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.principal-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #023047;
  margin-bottom: 0.75rem;
}

.principal-content p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: #126782;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.principal-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

@media (max-width: 48rem) {
  .principal-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .principal-content h2 {
    font-size: 1.75rem;
  }

  .principal-content p {
    font-size: 1rem;
  }
}

/*----------------- CTA Section -----------------*/
.cta-section {
  background-color: #eaf6fb;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #023047;
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #e0a800;
  transform: translateY(-0.125rem);
}

@media (max-width: 48rem) {
  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }
}
