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

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-about__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: -20px auto 60px auto;
  line-height: 1.5;
}

.page-about__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

.page-about__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

/* Hero Section */
.page-about__hero-section {
  padding: 10px 0 80px 0; /* body handles --header-offset, small decorative padding-top */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.page-about__intro-text {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  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-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Button color */
}

.page-about__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-about__btn-small {
    padding: 10px 20px;
    font-size: 1rem;
}

.page-about__btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

.page-about__btn-link {
    color: #57E38D; /* Glow */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Mission Vision Section */
.page-about__mission-vision-section {
  padding: 80px 0;
}

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

.page-about__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-about__card-title {
  font-size: 1.7rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

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

/* Why Choose Us Section */
.page-about__why-choose-us-section {
  padding: 80px 0;
}

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

.page-about__feature-item {
  background-color: #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; /* Border */
}

.page-about__feature-icon {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-about__feature-title {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-about__game-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

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

.page-about__game-list li::before {
  content: '▶';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 0;
}

.page-about__game-list li a {
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
}

.page-about__game-list li a:hover {
  color: #57E38D;
  text-decoration: underline;
}

.page-about__bonus-info {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: left;
  border: 1px solid #2E7A4E;
}

.page-about__bonus-subtitle {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-about__bonus-steps {
  list-style: decimal;
  color: #A7D9B8;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-about__bonus-steps li {
  margin-bottom: 10px;
}

.page-about__bonus-terms {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-about__bonus-terms a {
  color: #57E38D;
  text-decoration: underline;
}

.page-about__bonus-terms a:hover {
  color: #2AD16F;
}

/* Commitment Section */
.page-about__commitment-section {
  padding: 80px 0;
}

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

.page-about__commitment-item {
  background-color: #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; /* Border */
}

.page-about__commitment-title {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__commitment-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-about__commitment-text a {
    color: #57E38D;
    text-decoration: underline;
}

.page-about__commitment-text a:hover {
    color: #2AD16F;
}

/* Journey Section */
.page-about__journey-section {
  padding: 80px 0;
}

.page-about__journey-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-about__timeline {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.page-about__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #2E7A4E; /* Divider */
  transform: translateX(-50%);
}

.page-about__timeline-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  width: calc(50% - 40px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.page-about__timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  margin-left: 40px;
}

.page-about__timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #57E38D; /* Glow */
  border: 3px solid #08160F; /* Background */
  top: 30px;
  z-index: 1;
}

.page-about__timeline-item:nth-child(odd)::before {
  right: -48px;
}

.page-about__timeline-item:nth-child(even)::before {
  left: -48px;
}

.page-about__timeline-year {
  font-size: 1.8rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-about__timeline-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-about__journey-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 0;
}

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

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

.page-about__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

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

.page-about__faq-item summary:hover {
  background-color: #13994A;
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 20px;
  color: #F2C14E; /* Gold */
}

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

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

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

.page-about__faq-answer a:hover {
    color: #2AD16F;
}

/* Bottom CTA Section */
.page-about__cta-bottom-section {
  text-align: center;
  padding: 80px 0;
}

.page-about__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

.page-about__cta-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-image {
    max-height: 500px;
  }

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

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

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

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

  .page-about__timeline-item {
    width: calc(50% - 30px);
    padding: 20px;
  }

  .page-about__timeline-item:nth-child(even) {
    margin-left: 30px;
  }

  .page-about__timeline-item:nth-child(odd)::before {
    right: -42px;
  }

  .page-about__timeline-item:nth-child(even)::before {
    left: -42px;
  }
}

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

  .page-about__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, small decorative padding-top */
    padding-bottom: 60px;
  }

  .page-about__hero-image {
    max-height: 300px;
    margin-bottom: 30px;
  }

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

  .page-about__intro-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

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

  .page-about__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

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

  .page-about__card,
  .page-about__feature-item,
  .page-about__commitment-item {
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__card-image,
  .page-about__feature-icon,
  .page-about__journey-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
  }

  .page-about__card-title,
  .page-about__feature-title,
  .page-about__commitment-title {
    font-size: 1.5rem;
  }

  .page-about__card-text,
  .page-about__feature-text,
  .page-about__commitment-text {
    font-size: 0.95rem;
  }

  .page-about__timeline::before {
    left: 20px;
    transform: translateX(0);
  }

  .page-about__timeline-item {
    width: calc(100% - 60px);
    left: 20px;
    margin-left: 0;
    text-align: left;
    padding: 20px;
  }

  .page-about__timeline-item:nth-child(odd)::before,
  .page-about__timeline-item:nth-child(even)::before {
    left: -28px;
    top: 25px;
    right: auto;
  }

  .page-about__timeline-year {
    font-size: 1.6rem;
  }

  .page-about__journey-content {
    gap: 30px;
  }

  .page-about__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

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

  .page-about__cta-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 20px;
  }

  .page-about__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Ensure all sections and containers have padding for mobile */
  .page-about__container,
  .page-about__mission-vision-section,
  .page-about__why-choose-us-section,
  .page-about__commitment-section,
  .page-about__journey-section,
  .page-about__faq-section,
  .page-about__cta-bottom-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

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

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

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

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

  .page-about__timeline-item {
    left: 15px;
    width: calc(100% - 45px);
  }

  .page-about__timeline::before {
    left: 15px;
  }

  .page-about__timeline-item:nth-child(odd)::before,
  .page-about__timeline-item:nth-child(even)::before {
    left: -28px;
  }
}