.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 15px;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for first section */
}

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

.page-about__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card B G with transparency */
  margin-top: -100px; /* Overlap with image slightly for design effect */
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

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

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

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-about__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-about__btn-tertiary {
  background-color: #1E3A2A; /* Divider */
  color: #A7D9B8; /* Text Secondary */
  border: 1px solid #2E7A4E; /* Border */
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-about__btn-tertiary:hover {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  border-radius: 2px;
}

.page-about__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-about__card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
  height: 100%;
  box-sizing: border-box;
}

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

.page-about__commitment-title {
  color: #2AD16F;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.page-about__commitment-description,
.page-about__values-list {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-about__values-list {
  list-style: none;
  padding-left: 0;
}

.page-about__values-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-about__values-list li::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-about__feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-about__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about__feature-title {
  color: #2AD16F;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.page-about__feature-description,
.page-about__game-list {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-about__game-list {
  list-style: none;
  padding-left: 0;
}

.page-about__game-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-about__game-list li::before {
  content: '•';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

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

.page-about__commitment-card-title {
  color: #2AD16F;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

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

.page-about__team-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px auto;
}

.page-about__team-info {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__team-subtitle {
  color: #2AD16F;
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__future-goals {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__future-subtitle {
  color: #2AD16F;
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__goals-list {
  list-style: none;
  padding-left: 0;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-about__goals-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-about__goals-list li::before {
  content: '⭐';
  color: #F2C14E; /* Gold */
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__call-to-action {
  margin-top: 50px;
  padding: 40px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

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

.page-about__faq-section {
  text-align: center;
}

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

.page-about__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  list-style: none; /* For details/summary */
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

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

  .page-about__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important;
  }

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

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

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

  .page-about__hero-description {
    font-size: 1rem;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 0.95rem;
  }

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

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

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

  .page-about__commitment-grid,
  .page-about__features-grid,
  .page-about__commitment-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__feature-image {
    height: 200px;
  }

  .page-about__commitment-title,
  .page-about__feature-title,
  .page-about__commitment-card-title,
  .page-about__team-subtitle,
  .page-about__future-subtitle {
    font-size: 1.4rem;
  }

  .page-about__commitment-description,
  .page-about__values-list,
  .page-about__feature-description,
  .page-about__game-list,
  .page-about__commitment-card-description,
  .page-about__goals-list {
    font-size: 0.95rem;
  }

  .page-about__call-to-action {
    padding: 30px 20px;
  }

  .page-about__cta-text {
    font-size: 1.1rem;
  }

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

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all containers with images/buttons/videos are responsive */
  .page-about__section,
  .page-about__container,
  .page-about__card,
  .page-about__cta-buttons,
  .page-about__commitment-grid,
  .page-about__features-grid,
  .page-about__commitment-cards,
  .page-about__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}

/* Text color adjustments for contrast */
.page-about h1, .page-about h2, .page-about h3, .page-about h4, .page-about h5, .page-about h6 {
  color: #F2FFF6;
}

.page-about p, .page-about li {
  color: #A7D9B8;
}

.page-about strong {
  color: #F2FFF6;
}

/* Specific overrides for contrast */
.page-about__btn-primary {
  color: #ffffff;
}

.page-about__btn-secondary {
  color: #2AD16F;
}

.page-about__btn-secondary:hover {
  color: #ffffff;
}

.page-about__btn-tertiary {
  color: #A7D9B8;
}

.page-about__btn-tertiary:hover {
  color: #F2FFF6;
}

.page-about__faq-question {
  color: #F2FFF6;
}

.page-about__faq-toggle {
  color: #2AD16F;
}

.page-about__faq-answer {
  color: #A7D9B8;
}

.page-about a {
  color: #2AD16F; /* Link color */
  text-decoration: none;
}

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