.page-about {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__section {
  padding: 60px 20px;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about__dark-section {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-about__light-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-about__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content */
  min-height: 500px;
  box-sizing: border-box;
}

.page-about__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 20px; /* Spacing between image and text in document flow */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Slightly darker overlay for text readability */
  border-radius: 8px;
}

.page-about__main-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.page-about__intro-text {
  font-size: 1.15rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.page-about__btn-primary {
  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: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

.page-about__large-button {
  padding: 18px 40px;
  font-size: 1.2rem;
}

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

.page-about__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Gold color for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-about__sub-title {
  font-size: 1.8rem;
  color: #57E38D; /* Glow color for sub titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #F2FFF6;
}

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

.page-about__value-list, 
.page-about__why-choose-list, 
.page-about__security-features, 
.page-about__social-responsibility-list, 
.page-about__game-categories, 
.page-about__user-experience-features, 
.page-about__promotions-list, 
.page-about__technology-innovation-list, 
.page-about__market-expansion-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  color: #F2FFF6;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.page-about__list-item strong {
  color: #57E38D;
  margin-right: 8px;
}

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

.page-about__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-about__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider color for question background */
  font-weight: bold;
  color: #F2FFF6;
  font-size: 1.1rem;
}

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

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

.page-about__faq-answer {
  padding: 15px 25px 20px;
  color: #A7D9B8;
  font-size: 0.95rem;
  line-height: 1.7;
  background-color: #11271B;
}

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

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

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

.page-about__conclusion-cta {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-about__text-center {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.5rem;
  }

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

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
    min-height: 400px;
  }

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

  .page-about__main-title {
    font-size: 2rem;
    max-width: 100% !important;
  }

  .page-about__intro-text {
    font-size: 1rem;
    max-width: 100% !important;
  }

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

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

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

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

  .page-about__text-block,
  .page-about__list-item,
  .page-about__faq-answer p {
    font-size: 0.95rem;
  }

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

  /* All images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }

  /* All image containers */
  .page-about__section,
  .page-about__container,
  .page-about__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* All buttons */
  .page-about__btn-primary,
  .page-about__large-button,
  .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;
  }

  /* Button containers */
  .page-about__hero-content,
  .page-about__conclusion-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.8rem;
  }

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

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

  .page-about__btn-primary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-about__large-button {
    padding: 15px 25px;
    font-size: 1rem;
  }
}