.page-about {
  background-color: #08160F; /* Main background */
  color: #F2FFF6; /* Main text color for contrast */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
  font-size: 1rem;
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  background-color: #08160F; /* Ensure background for hero section */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
}

.page-about__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and content */
}

.page-about__main-title {
  font-size: clamp(2rem, 5vw, 3.2rem); /* Responsive H1 */
  font-weight: 700;
  color: #F2FFF6;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

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

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

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Light text for button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-about__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

/* General Sections */
.page-about__section {
  padding: 60px 0;
  background-color: #08160F; /* Default background for sections */
}

.page-about__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG for alternating sections */
}

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

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

.page-about__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2AD16F;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about p {
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-about a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about a:hover {
  color: #F2FFF6;
  text-decoration: underline;
}

/* Content Grid Layout */
.page-about__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
}

.page-about__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

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

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

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

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

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

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

.page-about__product-card {
  display: flex;
  flex-direction: column;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__product-image {
  width: 100%;
  height: 200px; /* Fixed height for product images */
  object-fit: cover;
  display: block;
}

.page-about__product-card .page-about__card-title {
  margin: 20px 20px 10px;
  color: #F2FFF6;
  text-align: left;
}

.page-about__product-card p {
  color: #A7D9B8;
  padding: 0 20px 20px;
  font-size: 0.95rem;
  text-align: left;
}

/* Responsibility Grid */
.page-about__responsibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

/* FAQ Section */
.page-about__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #1E3A2A; /* Divider color for question background */
  list-style: none; /* For <summary> */
  user-select: none;
}

.page-about__faq-question::-webkit-details-marker {
  display: none; /* For <summary> */
}

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

.page-about__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8;
  font-size: 1rem;
  /* These are for JS based FAQ, but <details> handles it natively */
  /* max-height: 0; */
  /* overflow: hidden; */
  /* transition: max-height 0.3s ease-out; */
}

.page-about__faq-item[open] .page-about__faq-answer {
    /* max-height: 1000px; */ /* For JS based FAQ */
    /* transition: max-height 0.5s ease-in; */
    padding-top: 10px; /* Add padding when open */
}

/* Final CTA Section */
.page-about__cta-final {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-about__cta-container {
    position: relative;
    padding: 0; /* Remove default container padding to allow full image width */
}

.page-about__cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    max-height: 300px; /* Limit height */
    filter: brightness(70%); /* Darken image slightly for text readability */
}

.page-about__cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #F2FFF6;
}

.page-about__cta-content .page-about__section-title {
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-about__cta-content .page-about__section-title::after {
    background-color: #57E38D; /* Glow color for CTA title underline */
}

.page-about__cta-content .page-about__description {
    color: #A7D9B8;
    margin-bottom: 30px;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__content-grid {
    flex-direction: column;
  }

  .page-about__content-grid--reverse {
    flex-direction: column; /* Also column for reverse on smaller screens */
  }

  .page-about__hero-content {
    padding: 30px 15px;
  }

  .page-about__hero-image {
    max-height: 400px;
  }

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

  .page-about__values-grid,
  .page-about__commitment-grid,
  .page-about__products-grid,
  .page-about__responsibility-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .page-about__product-image {
    height: 180px;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 1rem;
  }
  
  .page-about__container {
    padding: 0 15px; /* Adjust container padding for mobile */
  }

  /* Images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-about__hero-image {
    max-height: 300px !important; /* Smaller hero image on mobile */
  }

  .page-about__image-block,
  .page-about__product-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Sections and Containers */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__history-mission,
  .page-about__core-values,
  .page-about__commitment,
  .page-about__products,
  .page-about__security-tech,
  .page-about__social-responsibility,
  .page-about__team-vision,
  .page-about__faq,
  .page-about__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific padding for hero section top */
  .page-about__hero-section {
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-about__section-title {
    font-size: 1.6rem;
  }

  .page-about__sub-title {
    font-size: 1.3rem;
  }

  .page-about__card-title {
    font-size: 1.2rem;
  }

  .page-about__item-title {
    font-size: 1.1rem;
  }

  /* Buttons */
  .page-about__cta-button,
  .page-about__cta-button--large {
    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;
    text-align: center;
  }

  /* Button containers for multiple buttons */
  .page-about__cta-buttons, /* If multiple buttons were in a flex container */
  .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;
    display: flex; /* Ensure flex for wrapping */
    flex-direction: column; /* Stack buttons vertically */
  }

  /* CTA final content on image */
  .page-about__cta-content {
    width: 90%;
    padding: 15px;
  }

  .page-about__cta-content .page-about__section-title {
    font-size: 1.8rem;
  }
  .page-about__cta-content .page-about__description {
    font-size: 1rem;
  }
}