/* style/about.css */

/* --- General Styles for page-about --- */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background color */
  line-height: 1.6;
  padding-bottom: 50px; /* Add some padding at the bottom */
}

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

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider color */
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__dark-section {
  background-color: #0A4B2C; /* Deep Green for dark sections */
}

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

.page-about__sub-title {
  font-size: clamp(22px, 3vw, 30px); /* Responsive font size for H3 */
  font-weight: 600;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__text-block {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Ensure text is visible on card background */
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* --- Hero Section --- */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

.page-about__main-title {
  font-size: clamp(32px, 5vw, 56px); /* Responsive font size for H1 */
  font-weight: 800;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow color */
}

.page-about__hero-description {
  font-size: 18px;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.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: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

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

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow effect on hover */
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-about__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 0 15px #57E38D; /* Glow effect on hover */
}

/* --- Vision and Mission Section --- */
.page-about__vision-mission .page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-about__vision-mission .page-about__content-text {
  flex: 1;
  min-width: 300px;
}

.page-about__vision-mission .page-about__content-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__vision-mission .page-about__content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Min size for content image */
  min-height: 200px;
}

/* --- Core Values Section --- */
.page-about__core-values .page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__value-card {
  text-align: center;
}

.page-about__value-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 15px;
  color: #A7D9B8;
  text-align: center;
}

.page-about__values-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 50px;
  object-fit: cover;
  min-width: 200px; /* Min size for content image */
  min-height: 200px;
}

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

.page-about__advantage-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-about__advantage-title {
  font-size: 20px;
  font-weight: 700;
  color: #2AD16F;
  margin-bottom: 10px;
}

.page-about__advantage-description {
  font-size: 15px;
  color: #A7D9B8;
}

/* --- Our Commitment Section --- */
.page-about__our-commitment .page-about__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__commitment-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-about__commitment-title {
  font-size: 20px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-about__commitment-description {
  font-size: 15px;
  color: #A7D9B8;
}

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

.page-about__product-card {
  text-align: center;
  padding: 20px;
}

.page-about__product-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Min size for content image */
  min-height: 200px;
}

.page-about__product-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.page-about__product-title a:hover {
  color: #2AD16F;
}

.page-about__product-description {
  font-size: 15px;
  color: #A7D9B8;
}

/* --- Team Section --- */
.page-about__team .page-about__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__team-member {
  text-align: center;
  padding: 20px;
}

.page-about__team-member img {
  
  
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #2AD16F;
  min-width: 200px; /* Min size for content image */
  min-height: 200px;
}

.page-about__member-name {
  font-size: 20px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 16px;
  color: #2AD16F;
  margin-bottom: 10px;
}

.page-about__member-bio {
  font-size: 14px;
  color: #A7D9B8;
  text-align: center;
}

/* --- Achievements Section --- */
.page-about__achievements .page-about__achievement-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__achievement-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-about__achievement-title {
  font-size: 20px;
  font-weight: 700;
  color: #F2C14E; /* Gold color */
  margin-bottom: 10px;
}

.page-about__achievement-description {
  font-size: 15px;
  color: #A7D9B8;
}

/* --- CSR Section --- */
.page-about__csr .page-about__csr-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-about__csr-image {
  flex: 1;
  min-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px;
}

.page-about__csr-text {
  flex: 1;
  min-width: 300px;
}

/* --- Future Section --- */
.page-about__future .page-about__future-goals {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__future-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-about__future-title {
  font-size: 20px;
  font-weight: 700;
  color: #57E38D; /* Glow color */
  margin-bottom: 10px;
}

.page-about__future-description {
  font-size: 15px;
  color: #A7D9B8;
}

.page-about__future-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 50px;
  object-fit: cover;
  min-width: 200px; /* Min size for content image */
  min-height: 200px;
}

/* --- Contact Section --- */
.page-about__contact .page-about__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__contact-card {
  text-align: center;
  padding: 25px;
}

.page-about__contact-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-about__contact-description {
  font-size: 15px;
  color: #A7D9B8;
  margin-bottom: 20px;
}

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

.page-about__faq-item {
  margin-bottom: 15px;
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-about__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #11271B; /* Ensure summary has card background */
}

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-about__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
  color: #F2FFF6;
}

.page-about__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #2AD16F;
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 15px;
  color: #A7D9B8;
  text-align: justify;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  content: '−'; /* Change to minus sign when open */
}

/* --- Image & Video Responsiveness --- */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-about video,
.page-about__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-about__video-section,
.page-about__video-container,
.page-about__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-about__section {
    padding: 40px 0;
  }

  .page-about__section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .page-about__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-about__hero-section {
    padding-bottom: 40px;
  }

  .page-about__main-title {
    font-size: 38px;
  }

  .page-about__hero-description {
    font-size: 16px;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__vision-mission .page-about__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__core-values .page-about__values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__product-card img {
    height: auto; /* Allow auto height for mobile */
  }

  .page-about__team .page-about__team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__csr .page-about__csr-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__future .page-about__future-goals {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__contact .page-about__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__faq-item summary {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Force image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Force video responsiveness */
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Video container mobile adaptation */
  .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;
  }

  /* Video section mobile top padding */
  .page-about__video-section {
    padding-top: 10px !important;
  }

  /* Content section padding */
  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button container mobile adaptation */
  .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: 15px;
  }
  .page-about__cta-buttons {
    flex-direction: column; /* Ensure vertical stack on mobile */
  }
}