/* ===============================
   ABOUT PAGE – LUXURY STYLE
================================ */

.about-hero {
  background: linear-gradient(rgba(15, 92, 76, 0.7), rgba(15, 92, 76, 0.7)),
    url("../images/about-hero.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
}

.about-content {
  padding: 70px 20px;
}

.about-intro h2,
.about-why h2 {
  color: #0f5c4c;
  font-size: 30px;
  margin-bottom: 15px;
}

.about-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
  font-size: 36px;
  color: #ac8a17;
  margin-bottom: 5px;
}

/* WHY */
.about-why ul {
  list-style: none;
  padding: 0;
}

.about-why li {
  font-size: 16px;
  padding: 8px 0;
}

/* CTA */
.about-cta {
  background: #0f5c4c;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.about-cta h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.about-cta p {
  margin-bottom: 20px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 30px;
  }
}
