/* =========================================================
   About Page
========================================================= */

.about-page {
  width: 100%;
  background: #f7f7f2;
  color: #333333;
  text-align: center;
  padding: 32px 18px 0;
  overflow: hidden;
}

.about-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.about-logo-box img {
  width: 180px;
  max-width: 45%;
  height: auto;
  object-fit: contain;
}

.about-intro {
  max-width: 920px;
  margin: 0 auto;
}

.about-intro h1 {
  font-size: 18px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-intro p,
.about-description p,
.about-bottom-text p {
  font-size: 15px;
  color: #333333;
  line-height: 1.85;
  margin-bottom: 12px;
}

.about-image-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 22px auto 18px;
  max-width: 960px;
}

.about-image-card {
  width: 50%;
  border-radius: 18px;
  overflow: hidden;
}

.about-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.about-description {
  max-width: 920px;
  margin: 0 auto 26px;
}

.about-stats {
  width: calc(100% + 36px);
  margin-right: -18px;
  margin-left: -18px;
  background: #a67c00;
  color: #ffffff;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-item {
  width: 25%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 8px;
}

.about-stat-item span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.8;
}

.about-bottom-text {
  max-width: 920px;
  margin: 26px auto 0;
}

.about-signature {
  display: flex;
  justify-content: center;
  margin-top: 120px;
  margin-bottom: -20px;
}

.about-signature img {
  width: 310px;
  max-width: 70%;
  height: auto;
  object-fit: contain;
}

/* ================= Responsive About Page ================= */

@media (max-width: 1024px) {
  .about-page {
    padding: 28px 16px 0;
  }

  .about-logo-box img {
    width: 160px;
  }

  .about-image-card img {
    height: 170px;
  }

  .about-stat-item strong {
    font-size: 25px;
  }

  .about-stat-item span {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 24px 14px 0;
  }

  .about-logo-box {
    margin-bottom: 14px;
  }

  .about-logo-box img {
    width: 135px;
    max-width: 50%;
  }

  .about-intro h1 {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .about-intro p,
  .about-description p,
  .about-bottom-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-image-row {
    gap: 12px;
    margin-top: 18px;
  }

  .about-image-card {
    border-radius: 14px;
  }

  .about-image-card img {
    height: 145px;
    border-radius: 14px;
  }

  .about-stats {
    flex-wrap: wrap;
    min-height: auto;
    padding: 18px 0;
  }

  .about-stat-item {
    width: 50%;
    min-height: 95px;
  }

  .about-stat-item strong {
    font-size: 24px;
  }

  .about-stat-item span {
    font-size: 15px;
  }

  .about-signature {
    margin-top: 80px;
  }

  .about-signature img {
    width: 240px;
  }
}

@media (max-width: 520px) {
  .about-page {
    padding: 22px 12px 0;
  }

  .about-logo-box img {
    width: 120px;
  }

  .about-image-row {
    flex-direction: column;
  }

  .about-image-card {
    width: 100%;
  }

  .about-image-card img {
    height: 190px;
  }

  .about-stats {
    width: calc(100% + 24px);
    margin-right: -12px;
    margin-left: -12px;
  }

  .about-stat-item {
    width: 100%;
    min-height: 86px;
  }

  .about-stat-item strong {
    font-size: 26px;
  }

  .about-stat-item span {
    font-size: 16px;
  }

  .about-signature {
    margin-top: 60px;
  }

  .about-signature img {
    width: 210px;
  }
}
