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

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

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

.page-about__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-about__section-title--cta {
  color: #F2C14E; /* Gold */
}

.page-about__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__text-block a {
  color: #2AD16F; /* Lighter green for links */
  text-decoration: underline;
}

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

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

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

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text contrast */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over image slightly */
  background: rgba(17, 39, 27, 0.85); /* Card B G with transparency */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-about__description {
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-about__btn-secondary {
  background: none;
  color: #2AD16F; /* Lighter green */
  border: 2px solid #2AD16F; /* Lighter green */
}

.page-about__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1); /* Lighter green with transparency */
  transform: translateY(-3px);
  opacity: 0.9;
}

.page-about__card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about__card--dark {
  background-color: #0A4B2C; /* Deep Green */
  border-color: #1E3A2A; /* Divider */
}

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

.page-about__gold-text {
  color: #F2C14E; /* Gold */
  font-weight: 600;
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-about__grid-layout--reversed {
  grid-template-columns: 1fr;
}

.page-about__grid-layout .page-about__image-block {
  order: 0; /* Default order */
}

.page-about__grid-layout--reversed .page-about__image-block {
  order: 1; /* Reversed order for image block */
}

.page-about__image-block {
  width: 100%;
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-about__image--centered {
  margin: 30px auto;
  max-width: 1000px; /* Example max-width for content images */
}

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

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

.page-about__value-item .page-about__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-about__advantage-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-about__advantage-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-left: 5px solid #22C768; /* Accent color */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  text-align: left;
}

.page-about__list-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-about__video-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Background */
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.page-about__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%; /* Ensure desktop width is 100% */
  box-sizing: border-box;
}

.page-about__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-about__faq-list {
  margin-top: 30px;
}

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none; /* For details/summary */
}

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

.page-about__faq-question .page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-about__faq-answer {
  padding: 20px 25px;
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
  text-align: left;
}

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

.page-about__cta-bottom {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-about__cta-container {
  max-width: 800px;
}

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

/* Responsive Styles */
@media (min-width: 769px) {
  .page-about__grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__grid-layout--reversed .page-about__image-block {
    order: 0; /* Reset order for desktop */
  }
  .page-about__grid-layout--reversed .page-about__content-block {
    order: 1;
  }
}

@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__card-title {
    font-size: 1.6em;
  }
  .page-about__text-block {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-about__hero-content {
    margin-top: -80px;
    padding: 25px;
    max-width: calc(100% - 30px);
  }
  .page-about__main-title {
    font-size: 2em;
  }
  .page-about__description {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-about__card {
    padding: 20px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__advantage-item {
    padding: 15px;
  }
  .page-about__list-title {
    font-size: 1.2em;
  }
  .page-about__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
  .page-about__cta-bottom {
    padding: 60px 0;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__hero-image-wrapper,
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper,
  .page-about__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__video-wrapper {
    padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
    height: 0 !important;
    margin-top: 20px !important;
  }
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
}