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

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

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 80px 20px;
  background: rgba(8, 22, 15, 0.7); /* Slightly darker background for text readability */
  border-radius: 10px;
  margin-top: 100px; /* Adjust as needed for visual balance */
}

.page-about__main-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-about__hero-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-about__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn-primary: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__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-about__section-description {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__introduction-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-about__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-about__text-block {
  flex: 1;
  min-width: 300px;
}

.page-about__text-block p {
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-about__text-block .page-about__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

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

.page-about__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-about__mission-values-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-about__card {
  background-color: #08160F; /* Background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.page-about__card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-about__value-list {
  list-style: none;
  padding: 0;
}

.page-about__value-list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-about__value-list li::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__why-choose-us-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-about__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__feature-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.page-about__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

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

.page-about__feature-card a:hover {
  text-decoration: underline;
}

.page-about__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-about__commitment-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

.page-about__commitment-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap-reverse; /* Image at bottom on mobile */
}

.page-about__sub-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.page-about__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none; /* For details/summary */
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

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

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

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

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

.page-about__cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-about__cta-section .page-about__container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  background: rgba(8, 22, 15, 0.8); /* Darker overlay for text */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-about__btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
  margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-about__hero-content {
    padding: 40px 15px;
    margin-top: 50px;
  }

  .page-about__main-title {
    font-size: 2rem;
  }

  .page-about__hero-description {
    font-size: 1rem;
  }

  .page-about__btn-primary {
    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__section-title {
    font-size: 1.8rem;
  }

  .page-about__section-description {
    font-size: 0.95rem;
  }

  .page-about__content-wrapper {
    flex-direction: column;
  }

  .page-about__image-block {
    order: -1; /* Image appears above text on mobile */
  }

  .page-about__text-block p {
    font-size: 0.95rem;
  }

  .page-about__card {
    padding: 20px;
  }

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

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

  .page-about__feature-card {
    padding: 20px;
  }

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

  .page-about__feature-card p {
    font-size: 0.9rem;
  }

  .page-about__commitment-wrapper {
    flex-direction: column;
  }

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

  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-about__faq-answer {
    font-size: 0.9rem;
    padding: 0 15px 15px 15px;
  }

  .page-about__cta-section .page-about__container {
    padding: 30px 15px;
  }

  .page-about__btn-large {
    font-size: 1rem;
    padding: 15px 25px;
  }

  /* Ensure all images are responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all containers with images/buttons/videos are responsive */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__content-wrapper,
  .page-about__image-block,
  .page-about__text-block,
  .page-about__grid,
  .page-about__feature-grid,
  .page-about__feature-card,
  .page-about__cta-bottom,
  .page-about__commitment-wrapper,
  .page-about__faq-list,
  .page-about__faq-item,
  .page-about__hero-content,
  .page-about__cta-section .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
}

@media (min-width: 769px) {
  .page-about__content-wrapper {
    flex-direction: row;
  }
  .page-about__commitment-wrapper {
    flex-direction: row;
  }
}