.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  text-align: center;
  background: #08160F;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 900px;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-about__description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-tertiary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F;
  border: 2px solid #2E7A4E; /* Border */
}

.page-about__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-about__btn-tertiary {
  background: transparent;
  color: #2AD16F;
  border: 1px solid #2E7A4E;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-about__btn-tertiary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
}

.page-about__btn-primary--large,
.page-about__btn-secondary--large {
  padding: 16px 35px;
  font-size: 1.1rem;
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2AD16F;
  border-radius: 2px;
}

.page-about__mission-vision-section,
.page-about__history-section,
.page-about__commitment-section,
.page-about__faq-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-about__why-choose-section,
.page-about__affiliate-section,
.page-about__cta-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG for dark sections */
}

.page-about__dark-section .page-about__section-title,
.page-about__dark-section .page-about__description-dark {
  color: #F2FFF6;
}

.page-about__description-dark {
  text-align: center;
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 50px;
}

.page-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E;
}

.page-about__card-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-about__card-text {
  color: #A7D9B8;
  font-size: 1rem;
}

.page-about__text-block {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-about__timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #2E7A4E;
  transform: translateX(-50%);
}

.page-about__timeline-item {
  width: 50%;
  padding: 20px 40px;
  position: relative;
  box-sizing: border-box;
}

.page-about__timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.page-about__timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.page-about__timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #2AD16F;
  border-radius: 50%;
  border: 2px solid #F2FFF6;
  z-index: 1;
}

.page-about__timeline-item:nth-child(odd)::before {
  right: -6px;
}

.page-about__timeline-item:nth-child(even)::before {
  left: -6px;
}

.page-about__timeline-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-about__timeline-text {
  color: #A7D9B8;
  font-size: 0.95rem;
}

.page-about__image-centered {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-about__feature-card {
  background: #08160F; /* Background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid #2E7A4E;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-about__feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2AD16F;
  margin-bottom: 15px;
}

.page-about__feature-text {
  color: #A7D9B8;
  font-size: 0.95rem;
}

.page-about__cta-buttons--center {
  margin-top: 30px;
}

.page-about__commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-about__commitment-item {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-about__commitment-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__commitment-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-about__commitment-text {
  color: #A7D9B8;
  font-size: 0.95rem;
}

.page-about__grid--affiliate {
  grid-template-columns: 1fr 1fr;
}

.page-about__card--affiliate,
.page-about__card--partner {
  background: #08160F; /* Background */
  border: 1px solid #2E7A4E;
}

.page-about__faq-section {
  background-color: #08160F;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__faq-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6;
  background: #11271B;
  list-style: none; /* For details/summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.6;
}

.page-about__faq-answer p {
  margin-bottom: 0;
}

.page-about__link {
  color: #2AD16F;
  text-decoration: underline;
}

.page-about__link:hover {
  color: #57E38D;
}

.page-about__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-about__dark-bg-cta {
  background: #11271B; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__timeline::before {
    left: 15px;
    transform: translateX(0);
  }

  .page-about__timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    left: 0;
    text-align: left;
  }

  .page-about__timeline-item:nth-child(odd)::before,
  .page-about__timeline-item:nth-child(even)::before {
    left: 10px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-about__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-about__description {
    font-size: 1rem;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-tertiary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-about__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-about__mission-vision-section,
  .page-about__history-section,
  .page-about__why-choose-section,
  .page-about__commitment-section,
  .page-about__affiliate-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 40px 0;
  }

  .page-about__container {
    padding: 0 15px;
  }

  .page-about__grid,
  .page-about__features-grid,
  .page-about__commitment-list,
  .page-about__grid--affiliate {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__card,
  .page-about__feature-card,
  .page-about__commitment-item,
  .page-about__dark-bg-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__timeline-item {
    padding-left: 40px;
  }
}

/* Ensure content area images are not too small */
.page-about__card-icon,
.page-about__image-centered,
.page-about__commitment-icon {
  min-width: 200px;
  min-height: 150px; /* Min height can be less than 200px if width is 200px or more */
}

/* Prevent filter usage on images */
.page-about img {
  filter: none !important;
}