.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Light background #f8f9fa, so use dark text */
  background-color: #f8f9fa; /* Default body background */
}

/* Dark sections for contrast */
.page-about__dark-section {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Light text for dark background */
}

.page-about__dark-section .page-about__paragraph,
.page-about__dark-section .page-about__feature-description,
.page-about__dark-section .page-about__product-description,
.page-about__dark-section .page-about__commitment-description,
.page-about__dark-section .page-about__member-description,
.page-about__dark-section .page-about__contact-description,
.page-about__dark-section .page-about__faq-answer p {
  color: #A7D9B8; /* Text Secondary */
}

.page-about__dark-section a {
  color: #57E38D; /* Glow color for links on dark background */
}

.page-about__dark-section a:hover {
  color: #2AD16F; /* Button top gradient color for hover */
}

/* General typography */
.page-about__section-title {
  font-size: 2.5em;
  color: #11A84E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__dark-section .page-about__section-title {
  color: #F2C14E; /* Gold for titles on dark background */
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main for hero title */
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: center;
}

.page-about__intro-text {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__highlight {
  font-weight: bold;
  color: #11A84E; /* Main color */
}

.page-about__dark-section .page-about__highlight {
  color: #F2C14E; /* Gold for highlight on dark background */
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F; /* Dark background for hero */
}

.page-about__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-about__hero-text-container {
  text-align: center;
  width: 100%;
}

/* CTA Button */
.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box; /* For mobile button responsiveness */
  white-space: normal; /* For mobile button responsiveness */
  word-wrap: break-word; /* For mobile button responsiveness */
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

/* Feature Grid */
.page-about__feature-grid,
.page-about__product-grid,
.page-about__commitment-grid,
.page-about__team-grid,
.page-about__contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-item,
.page-about__product-item,
.page-about__commitment-item,
.page-about__team-member,
.page-about__contact-info-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__feature-item:hover,
.page-about__product-item:hover,
.page-about__commitment-item:hover,
.page-about__team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-about__feature-image,
.page-about__product-image,
.page-about__team-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block; /* Ensure no extra space below image */
}

.page-about__team-image {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 3px solid #11A84E;
}

.page-about__feature-title,
.page-about__product-title,
.page-about__commitment-title,
.page-about__member-name,
.page-about__contact-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__product-title a {
  color: #F2C14E; /* Gold for product links */
  text-decoration: none;
}

.page-about__product-title a:hover {
  text-decoration: underline;
}

.page-about__feature-description,
.page-about__product-description,
.page-about__commitment-description,
.page-about__member-description,
.page-about__member-role,
.page-about__contact-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-about__reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__reason-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-about__reason-title {
  font-size: 1.4em;
  color: #11A84E; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__reason-description {
  font-size: 1em;
  color: #333333;
}

.page-about__reason-description a {
  color: #11A84E;
  text-decoration: none;
}

.page-about__reason-description a:hover {
  text-decoration: underline;
}

.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-about__contact-list li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__contact-list li a {
  color: #57E38D; /* Glow color */
  text-decoration: none;
}

.page-about__contact-list li a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-about__faq-list {
  margin-top: 40px;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-about__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none; /* Hide for Webkit browsers */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2C14E; /* Gold */
}

.page-about__faq-question:hover {
  background-color: #11A84E; /* Main color */
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-answer a {
  color: #57E38D; /* Glow color */
  text-decoration: none;
}

.page-about__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__main-title {
    font-size: clamp(2em, 5vw, 3em); /* Adjusted clamp for H1 */
  }
  .page-about__intro-text {
    font-size: 1.1em;
  }
  .page-about__feature-grid,
  .page-about__product-grid,
  .page-about__commitment-grid,
  .page-about__team-grid,
  .page-about__contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em); /* Further adjustment for H1 on mobile */
    margin-bottom: 15px;
  }
  .page-about__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-about__container {
    padding: 20px 15px;
  }
  .page-about__hero-content-wrapper {
    padding: 20px 15px;
  }
  .page-about__hero-image {
    margin-bottom: 20px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__feature-grid,
  .page-about__product-grid,
  .page-about__commitment-grid,
  .page-about__team-grid,
  .page-about__contact-info-grid,
  .page-about__reason-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-about__feature-item,
  .page-about__product-item,
  .page-about__commitment-item,
  .page-about__team-member,
  .page-about__contact-info-item,
  .page-about__reason-item {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

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

  /* All containers with images/videos/buttons */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__hero-content-wrapper,
  .page-about__feature-item,
  .page-about__product-item,
  .page-about__commitment-item,
  .page-about__team-member,
  .page-about__contact-info-item,
  .page-about__reason-item,
  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container,
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-about__video-section {
    padding-top: 10px !important;
  }

  .page-about__team-image {
    width: 100px;
    height: 100px;
  }

  .page-about__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-about__faq-toggle {
    font-size: 1.2em;
  }
  .page-about__faq-answer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__main-title {
    font-size: clamp(1.5em, 8vw, 2em); /* Smallest screen H1 */
  }
}