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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-about__hero-content {
  position: relative; /* Ensure content is above image if z-index was used, but it's "below" in DOM */
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and content */
  background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-about__description {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 15px;
  justify-content: center;
}

.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: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  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: #2E7A4E; /* Border color */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

/* General Section Styling */
.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
}

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  line-height: 1.3;
}

.page-about__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Background colors for sections/cards */
.page-about__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Ensure light text on dark background */
}

.page-about__deep-green-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Ensure light text on dark background */
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-about__card {
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__card-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
}

.page-about__card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-about__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content varies */
}

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

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__value-item {
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-about__value-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-about__value-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

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

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

.page-about__feature-card {
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__feature-icon {
  width: 100%;
  max-width: 150px; /* Keep icons/small images reasonable size */
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

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

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

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

.page-about__team-member-card {
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-about__team-member-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid #57E38D; /* Glow */
  object-fit: cover;
}

.page-about__team-member-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 5px;
}

.page-about__team-member-position {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.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 {
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid transparent; /* Placeholder for toggle */
  transition: background-color 0.3s ease;
}

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

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

.page-about__faq-item[open] summary {
  border-bottom-color: #2E7A4E; /* Border color */
}

.page-about__faq-qtext {
  flex-grow: 1;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
  line-height: 1;
}

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #08160F; /* Background */
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 15px;
  }

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

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

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

  .page-about__main-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-about__description {
    font-size: 1rem;
  }

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

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

  .page-about__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    padding-top: 40px;
    margin-bottom: 30px;
  }

  .page-about__text-block {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__why-choose-us-section,
  .page-about__team-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 50px 0;
  }

  .page-about__cards-grid,
  .page-about__values-list,
  .page-about__features-grid,
  .page-about__team-members-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__card-title,
  .page-about__value-heading,
  .page-about__feature-title,
  .page-about__team-member-name {
    font-size: 1.5rem;
  }

  .page-about__card p,
  .page-about__value-item p,
  .page-about__feature-card p,
  .page-about__team-member-position,
  .page-about__faq-answer p {
    font-size: 0.9rem;
  }

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

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

  /* Image responsiveness for mobile */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos */
  .page-about__hero-image-wrapper,
  .page-about__card,
  .page-about__feature-card,
  .page-about__team-member-card,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__why-choose-us-section,
  .page-about__team-section,
  .page-about__faq-section,
  .page-about__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure content doesn't overflow */
  }

  /* Specific padding adjustment for sections that might have inherited extra padding */
  .page-about__mission-vision-section .page-about__container,
  .page-about__values-section .page-about__container,
  .page-about__why-choose-us-section .page-about__container,
  .page-about__team-section .page-about__container,
  .page-about__faq-section .page-about__container,
  .page-about__cta-section .page-about__container {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Video specific mobile responsiveness (if video was present) */
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-about__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
}