/* ================= ABOUT PAGE HERO ================= */
.page-title {
  height: 50vh;
  background: url("../images/back1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-title h1 {
  position: relative;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .page-title {
    height: 40vh;
  }

  .page-title h1 {
    font-size: 32px;
  }
}

/* ================= IMAGE GALLERY ================= */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .image-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

/* ================= PAGE WRAPPER ================= */
.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 10px 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .page-wrapper {
    margin-top: 0;
    padding: 20px;
    border-radius: 0;
  }
}

.page-wrapper-content {
  width: 100%;
  background: #f8f8f8;
  padding: 8px 0;
}

.page-inner {
  max-width: 1465px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .page-inner {
    padding: 0 20px;
  }
}

/* ================= CONTENT SECTIONS ================= */
.content-section {
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f3d5c;
  text-align: left;
  margin-bottom: 14px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  margin: 10px 0 18px;
}

.content-section p {
  font-size: 16.5px;
  line-height: 2.0;
  color: #444;
  text-align: left;
}

@media (max-width: 768px) {
  .content-section {
    padding: 25px 20px;
  }

  .content-section h2 {
    font-size: 22px;
  }
}

/* ================= LEFT ACCENT QUOTE ================= */
.left-accent {
  background: #f9fdf9;
  padding: 28px 35px;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 5px solid #2e7d32;
}

.left-accent p {
  font-size: 16.5px;
  line-height: 2.0;
  color: #444;
  font-style: italic;
}

/* ================= GREEN SECTION ================= */
.green-section {
  padding: 35px 40px;
  text-align: center;
  background-color: #eaf7ee;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(46, 125, 50, 0.08);
}

.green-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 18px;
}

.green-section p {
  font-size: 16.5px;
  line-height: 2.0;
  color: #333;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 12px;
}

@media (max-width: 768px) {
  .highlight-green {
    padding: 20px 0;
  }

  .green-section {
    padding: 25px 20px;
  }

  .green-section h2 {
    font-size: 24px;
  }
}

/* ================= VISION & MISSION ================= */
.vision-mission-section {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.vm-image {
  flex: 1;
}

.vm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.vm-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.vm-block {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.vm-block h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 14px;
}

.vm-block p {
  font-size: 16px;
  line-height: 2.0;
  color: #444;
}

.vm-block ul {
  padding-left: 20px;
}

.vm-block li {
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 10px;
  color: #444;
}

@media (max-width: 768px) {
  .vision-mission-section {
    flex-direction: column;
  }

  .vm-content {
    gap: 16px;
  }
}