/* ==============================
   ABOUT PAGE STYLING
   ============================== */

/* 🌿 HERO */
.about-hero {
  background: linear-gradient(rgba(20,136,59,0.7), rgba(20,136,59,0.7)),
              url('../img/about-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}

.about-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.1rem;
  color: #eafbe1;
}

/* 🏢 ABOUT CONTENT */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  color: #14883b;
  margin-bottom: 8px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.about-text ul {
  padding-left: 16px;
  color: #444;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 🌎 VALUES SECTION */
.about-values {
  background: #f6fff8;
  padding: 60px 20px;
  text-align: center;
}

.about-values h2 {
  margin-bottom: 30px;
  color: #14883b;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  background: #fff;
  border: 1px solid #d9f2dc;
  border-radius: 12px;
  padding: 32px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.value-card i {
  font-size: 38px;
  color: #14883b;
  margin-bottom: 12px;
}

.value-card:hover {
  transform: translateY(-5px);
  background: #eafbea;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 20px 60px;
  }
  .about-hero h1 {
    font-size: 1.8rem;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}