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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background-color: #08160F;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 40, 27, 0.7); /* Deep Green with transparency */
  border-radius: 10px;
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6;
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--centered {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 300px;
  text-align: center;
}

.page-about__section {
  padding: 60px 20px;
  background-color: #08160F;
}

.page-about__section.page-about__dark-bg {
  background-color: #11271B; /* Card BG */
}

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #11A84E;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__sub-title {
  font-size: 1.8rem;
  color: #11A84E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid--reverse .page-about__text-block {
  order: 2;
}

.page-about__content-grid--reverse .page-about__image-block {
  order: 1;
}

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

.page-about__image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__value-list,
.page-about__milestone-list,
.page-about__benefit-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-about__value-list li,
.page-about__milestone-list li,
.page-about__benefit-list li {
  background-color: #11271B;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 5px solid #11A84E;
  color: #F2FFF6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-about__value-list li strong,
.page-about__milestone-list li strong,
.page-about__benefit-list li strong {
  color: #22C768;
}

.page-about__section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 40px;
}

.page-about__product-image {
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__service-item {
  background-color: #11271B;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-about__service-title {
  font-size: 1.5rem;
  color: #22C768;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-about__service-item p,
.page-about__game-category-list li {
  color: #A7D9B8;
}

.page-about__game-category-list {
  list-style: disc;
  padding-left: 20px;
}

.page-about__game-category-list li {
  margin-bottom: 8px;
}

.page-about__two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-about__app-promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-about__faq-section {
  padding-bottom: 80px;
}

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

.page-about__faq-item {
  background-color: #11271B;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #2E7A4E;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__faq-item[open] .page-about__faq-question {
  border-bottom: 1px solid #11A84E;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #22C768;
  margin-left: 15px;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  content: '−';
}

.page-about__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #A7D9B8;
  border-top: 1px solid transparent; /* To prevent double border on open */
}

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

/* Details element specific styling */
.page-about__faq-item summary {
  list-style: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-about__section-title {
    font-size: 2rem;
  }
  .page-about__sub-title {
    font-size: 1.6rem;
  }
  .page-about__content-grid {
    grid-template-columns: 1fr;
  }
  .page-about__content-grid--reverse .page-about__text-block {
    order: initial;
  }
  .page-about__content-grid--reverse .page-about__image-block {
    order: initial;
  }
  .page-about__two-col-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

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

  .page-about__intro-text {
    font-size: 1rem;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__cta-button--centered {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-about__section {
    padding: 40px 15px;
  }

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

  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

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

  .page-about__text-block p,
  .page-about__service-item p,
  .page-about__game-category-list li,
  .page-about__faq-answer p {
    font-size: 0.95rem;
  }

  .page-about__image-block img,
  .page-about__product-image,
  .page-about__app-promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

  .page-about__faq-toggle {
    font-size: 1.2rem;
  }

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