/* ==========================
   ABOUT PAGE STYLES
========================== */

.about-section {
  padding: 80px 5%;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #0041c2;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* About Stats */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
}

.stat-box {
background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-box h3 {
  font-size: 2rem;
  color: #00a859;
}

.stat-box p {
  margin-top: 5px;
  color: #333;
}

/* ==========================
   MISSION SECTION
========================== */

.mission-section {
  background: #0041c2;
  color: #fff;
  text-align: center;
  padding: 80px 5%;
}

.mission-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.mission-section h2 span {
  color: #fff;
  text-decoration: underline;
}

.mission-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.mission-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.icon-box {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  width: 200px;
}

.icon-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.icon-box h4 {
  font-size: 1.1rem;
  color: #fff;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .about-stats {
    justify-content: center;
  }
}

#wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#wa-float img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}
