/* =================================================
   HOME PAGE
================================================= */

/* ================= HERO ================= */

.hero-actions {
  display: flex;
  gap: 14px;
}

.btn-outline {
  border: 2px solid #2be300;
  padding: 10px 20px;
  border-radius: 20px;
  color: #2be300;
  text-decoration: none;
  font-weight: bold;
}


/* =================================================
   OFFERS SECTION
================================================= */

.offers {
  background: #d9f5d9;
  padding: 60px 40px;
  text-align: center;
}

.offers h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.offers-sub {
  color: #444;
  margin-bottom: 40px;
}

/* OFFER CARDS */

.offer-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 18px;
  width: 220px;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin: 12px;
  vertical-align: top;

  min-height: 300px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  transition: 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.offer-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  min-height: 40px;
}

.offer-card p {
  color: #555;
  font-size: 13px;
  line-height: 1.4;
  flex-grow: 1;
}


/* =================================================
   LIFT IN ACTION SECTION
================================================= */

.lift-action {
  padding: 80px 60px;
  background: #ffffff;
}

.lift-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT SIDE - VOLUNTEERS */

.top-volunteers {
  flex: 1;
  max-width: 400px;
}

.top-volunteers h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.volunteer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.volunteer img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.volunteer h4 {
  margin: 0;
  font-size: 16px;
}

.volunteer p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
}

/* RIGHT SIDE - GALLERY */

.action-gallery {
  flex: 2;
}

.action-gallery h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.gallery-images {
  display: flex;
  gap: 20px;
}

.gallery-images img {
  width: 50%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}


/* =================================================
   LIFT STATS SECTION
================================================= */

.lift-stats {
  background: #d9f5d9;
  padding: 70px 40px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-box {
  flex: 1;
  min-width: 180px;
}

.stat-box h2 {
  font-size: 42px;
  margin: 0;
  font-weight: 800;
  color: #08a804;
}

.stat-box p {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #0a6f04;
}


/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 992px) {

  .lift-container {
    flex-direction: column;
  }

  .gallery-images {
    flex-direction: column;
  }

  .gallery-images img {
    width: 100%;
    height: auto;
  }

  .stats-container {
    flex-direction: column;
  }

}