body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fefefc;
  color: #333;
}

.about-hero {
  background: url('gallery\ \(4\).webp') no-repeat center center/cover;
  background-position: center;
  background-size: contain;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 1px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.container {
  max-width: 1080px;
  margin: auto;
  padding: 40px 20px;
}

.about-intro h2,
.about-extra h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e4d2b;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  color: #555;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.feature h3 {
  margin: 15px 0 10px;
  color: #2a7a44;
}

.feature p {
  font-size: 0.95rem;
  color: #666;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.highlights li {
  background: #e9f7ef;
  padding: 15px;
  border-radius: 10px;
  font-weight: 500;
  color: #1d5c3f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-footer {
  background: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

.back-home {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
}












.global-back-home-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  background-color: #2e86de;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.global-back-home-btn:hover {
  background-color: #1b4f72;
  transform: scale(1.05);
}

/* Mobile responsive tweaks */
@media (max-width: 480px) {
  .global-back-home-btn {
    top: 15px;
    left: 15px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
