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

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-about__section-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  padding-top: 10px; /* Small top margin, body handles header offset */
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #08160F 0%, #11271B 100%);
}

.page-about__hero-image {
  width: 100%;
  max-height: 550px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-about__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 15px;
  margin-top: -150px; /* Overlap slightly with image for visual appeal */
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid #2E7A4E;
}

.page-about__main-title {
  font-size: clamp(36px, 5vw, 58px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-about__hero-description {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-about__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-about__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.2);
}

.page-about__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

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

.page-about__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-bottom: 60px;
}

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

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

.page-about__image-block {
  flex: 1;
  min-width: 200px; /* Ensure minimum size */
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E;
}

.page-about__content-subtitle {
  font-size: 32px;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__text-block {
  font-size: 17px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-about__text-block strong {
  color: #57E38D; /* Glow */
}

/* Why Choose Us Section */
.page-about__why-choose-us {
  background: #11271B; /* Card BG */
  padding: 80px 0;
}

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

.page-about__feature-card {
  background: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid #2E7A4E;
}

.page-about__feature-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__card-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

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

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

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

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

.page-about__team-member-card {
  background: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid #2E7A4E;
}

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

.page-about__text-secondary {
  color: #A7D9B8;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 15px;
}

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

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

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

.page-about__contact-card .page-about__btn-secondary {
  margin-top: 20px;
  width: 100%;
}

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

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

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #0A4B2C; /* Deep Green */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}

details.page-about__faq-item summary.page-about__faq-question:hover {
  background: #1E3A2A; /* Divider */
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 25px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 10px 10px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  line-height: 1.7;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
  .page-about__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-about__hero-description {
    font-size: 18px;
  }
  .page-about__content-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__content-grid--reverse {
    flex-direction: column;
  }
  .page-about__content-subtitle {
    font-size: 28px;
  }
  .page-about__text-block {
    font-size: 16px;
  }
  .page-about__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-about__section-description {
    font-size: 16px;
  }
  .page-about__card-title {
    font-size: 22px;
  }
  .page-about__card-text {
    font-size: 15px;
  }
}

@media (max-width: 849px) {
  .page-about__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 15px;
  }
  .page-about__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .page-about__hero-image {
    max-height: 300px;
  }
  .page-about__hero-content {
    margin-top: -80px;
    padding: 20px;
    max-width: calc(100% - 30px); /* Adjust for padding */
  }
  .page-about__main-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-about__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 20px;
  }

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

  /* Content Containers Adaptation */
  .page-about__introduction-section .page-about__container,
  .page-about__why-choose-us .page-about__container,
  .page-about__commitment-section .page-about__container,
  .page-about__team-section .page-about__container,
  .page-about__contact-section .page-about__container,
  .page-about__faq-section .page-about__container,
  .page-about__content-grid,
  .page-about__features-grid,
  .page-about__commitment-grid,
  .page-about__team-grid,
  .page-about__contact-info-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-about__content-grid {
    gap: 20px;
    margin-bottom: 40px;
  }
  .page-about__content-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .page-about__text-block {
    font-size: 15px;
  }
  .page-about__feature-card,
  .page-about__commitment-item,
  .page-about__team-member-card,
  .page-about__contact-card {
    padding: 20px;
  }
  .page-about__card-title {
    font-size: 20px;
  }
  .page-about__card-text {
    font-size: 14px;
  }
  .page-about__team-member-card img {
    
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }
}