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

.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--alt-bg {
  background-color: #11271B; /* Card BG */
}

.page-about__section-title {
  font-size: 3em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-about__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 80px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  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: 40px 20px;
  background: rgba(8, 22, 15, 0.85); /* Slightly darker background for text readability */
  border-radius: 10px;
  margin-top: -150px; /* Overlap with image slightly for visual effect */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-about__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-about__intro-text {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

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

.page-about__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.2);
}

.page-about__cta-button--secondary:hover {
  transform: translateY(-3px);
  background: #0A4B2C; /* Deep Green */
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

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

.page-about__grid-layout--reversed .page-about__text-block {
  order: 2;
}

.page-about__grid-layout--reversed .page-about__image-block {
  order: 1;
}

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

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-about__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__list-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05em;
  border-left: 5px solid #2AD16F;
}

.page-about__list-item strong {
  color: #F2C14E; /* Gold */
  margin-right: 8px;
}

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

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

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

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

.page-about__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

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

.page-about__cta-wrapper {
  margin-top: 50px;
}

.page-about__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
  margin-top: 40px;
}

.page-about__benefits-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #22C768; /* Auxiliary color */
}

.page-about__benefits-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-about__benefits-item p {
  color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-about__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

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

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

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

.page-about__faq-item[open] .page-about__faq-toggle {
  color: #F2C14E; /* Gold */
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
  line-height: 1.7;
}

.page-about__contact-info {
  margin-top: 40px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__contact-info p {
  margin-bottom: 10px;
}

.page-about__contact-info strong {
  color: #F2FFF6; /* Text Main */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-about__hero-image-wrapper {
    height: 500px;
  }
  .page-about__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }
  .page-about__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-about__section-title {
    font-size: 2.5em;
  }
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-about__grid-layout--reversed .page-about__text-block {
    order: initial;
  }
  .page-about__grid-layout--reversed .page-about__image-block {
    order: initial;
  }
  .page-about__features-grid,
  .page-about__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about__hero-image-wrapper {
    height: 350px;
  }
  .page-about__hero-content {
    margin-top: -50px;
    padding: 25px 15px;
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-about__intro-text {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  .page-about__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-about__section {
    padding: 40px 0;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile container responsiveness */
  .page-about__section,
  .page-about__container,
  .page-about__hero-section,
  .page-about__hero-image-wrapper,
  .page-about__hero-content,
  .page-about__feature-card,
  .page-about__benefits-item,
  .page-about__faq-item,
  .page-about__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .page-about__cta-button,
  .page-about__cta-button--primary,
  .page-about__cta-button--secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    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;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }

  .page-about__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-about__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-about__list-item {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-image-wrapper {
    height: 250px;
  }
  .page-about__hero-content {
    margin-top: -30px;
    padding: 20px 10px;
  }
  .page-about__main-title {
    font-size: 1.5em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-about__feature-card,
  .page-about__benefits-item {
    padding: 20px;
  }
  .page-about__feature-title,
  .page-about__benefits-title {
    font-size: 1.3em;
  }
}