.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__section-padding {
  padding: 60px 0;
}

.page-about__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__section-title--light {
  color: #F2FFF6; /* Text Main for dark sections */
}

.page-about__dark-section {
  background-color: #11271B; /* Card BG */
}

/* HERO Section */
.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
  padding-bottom: 40px;
  position: relative;
  background-color: #08160F; /* Background */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-about__tagline {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-about__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Deep Green with opacity */
  color: #57E38D; /* Glow */
}

/* Intro Section */
.page-about__intro-section .page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-about__intro-section .page-about__content-wrapper p {
  flex: 1;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__intro-section .page-about__content-image {
  flex-shrink: 0;
  width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-about__value-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__value-card .page-about__value-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
}

.page-about__value-card .page-about__value-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-about__value-card p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Products Section */
.page-about__products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__product-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__product-card .page-about__product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-about__product-card .page-about__product-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-about__product-card .page-about__product-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__product-card .page-about__product-title a:hover {
  color: #57E38D; /* Glow */
}

.page-about__product-card p {
  font-size: 15px;
  margin: 0 20px 20px;
  flex-grow: 1;
}

/* Commitment Section */
.page-about__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-about__commitment-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__commitment-item .page-about__commitment-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-about__commitment-item p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-about__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-about__benefit-item {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  font-size: 17px;
  color: #F2FFF6; /* Text Main */
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__benefit-item::before {
  content: '✔';
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
  line-height: 1;
}

/* FAQ Section */
details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #2E7A4E; /* Border color */
  overflow: hidden;
  background: #0A4B2C; /* Deep Green */
}
details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
  background: #1e3a2a; /* Divider color for hover */
}
.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}
.page-about__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-about__faq-item .page-about__faq-answer {
  padding: 0 20px 20px;
  background: #11271B; /* Card BG */
  border-radius: 0 0 5px 5px;
}
details.page-about__faq-item .page-about__faq-answer p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Conclusion Section */
.page-about__conclusion-section {
  text-align: center;
}

.page-about__conclusion-text {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-about__section-padding {
    padding: 40px 0;
  }
  .page-about__section-title {
    margin-bottom: 30px;
  }
  .page-about__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-about__main-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }
  .page-about__tagline {
    font-size: clamp(16px, 2vw, 20px);
  }
  .page-about__intro-section .page-about__content-wrapper {
    flex-direction: column;
  }
  .page-about__intro-section .page-about__content-image {
    width: 100%;
    max-width: 600px;
  }
  .page-about__values-grid,
  .page-about__products-grid,
  .page-about__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-about__value-card,
  .page-about__product-card,
  .page-about__commitment-item {
    padding: 25px;
  }
  .page-about__value-card .page-about__value-icon {
    width: 120px;
    height: 120px;
  }
  .page-about__product-card .page-about__product-image {
    height: 180px;
  }
  .page-about__benefit-item {
    font-size: 16px;
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__section-padding {
    padding: 30px 0;
  }
  .page-about__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 25px;
  }

  /* HERO Section Mobile */
  .page-about__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 30px;
  }
  .page-about__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-about__hero-image {
    object-fit: contain !important; /* HERO: object-fit:contain */
    aspect-ratio: unset !important; /* HERO: aspect-ratio:unset */
    width: 100% !important;
    height: auto !important;
  }
  .page-about__main-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  .page-about__tagline {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 25px;
  }
  .page-about__cta-buttons {
    flex-direction: column; /* Buttons: flex-direction: column */
    gap: 15px;
    width: 100%; /* Button container width */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important; /* Buttons: max-width: 100% */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Intro Section Mobile */
  .page-about__intro-section .page-about__content-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .page-about__intro-section .page-about__content-wrapper p {
    font-size: 16px;
  }
  .page-about__intro-section .page-about__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Values Section Mobile */
  .page-about__values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__value-card {
    padding: 20px;
  }
  .page-about__value-card .page-about__value-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  .page-about__value-card .page-about__value-title {
    font-size: 20px;
  }
  .page-about__value-card p {
    font-size: 15px;
  }

  /* Products Section Mobile */
  .page-about__products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__products-section {
    overflow-x: hidden; /* Products: overflow-x:hidden */
  }
  .page-about__product-card .page-about__product-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 160px !important;
    box-sizing: border-box !important;
  }
  .page-about__product-card .page-about__product-title {
    font-size: 18px;
    margin: 15px 15px 8px;
  }
  .page-about__product-card p {
    font-size: 14px;
    margin: 0 15px 15px;
  }

  /* Commitment Section Mobile */
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__commitment-item {
    padding: 20px;
  }
  .page-about__commitment-item .page-about__commitment-title {
    font-size: 20px;
  }
  .page-about__commitment-item p {
    font-size: 15px;
  }

  /* Why Choose Section Mobile */
  .page-about__benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-about__benefit-item {
    font-size: 15px;
    padding: 15px;
  }
  .page-about__benefit-item::before {
    font-size: 18px;
  }

  /* FAQ Section Mobile */
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px;
  }
  .page-about__faq-qtext {
    font-size: 15px;
  }
  .page-about__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 15px 15px;
  }
  details.page-about__faq-item .page-about__faq-answer p {
    font-size: 15px;
  }

  /* Conclusion Section Mobile */
  .page-about__conclusion-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* General image and container rules for mobile */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__value-card .page-about__value-icon {
    object-fit: contain !important;
  }
}