.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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #08160F;
}

.page-about__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative; /* Ensure it's not absolutely positioned over image */
  z-index: 1;
  margin-top: -80px; /* Adjust if needed to bring content closer to image */
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.1em;
  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 {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

.page-about__btn-secondary {
  background: #08160F;
  color: #2AD16F; /* Match primary gradient start color */
  border: 2px solid #2AD16F;
}

.page-about__btn-secondary:hover {
  background: #11271B; /* Card BG */
  color: #F2FFF6;
  border-color: #F2FFF6;
}

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

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-about__text-block {
  font-size: 1.05em;
  color: #A7D9B8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-about__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1000px;
}

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

.page-about__dark-bg .page-about__text-block {
  color: #A7D9B8;
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-about__grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-about__card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__card-title {
  font-size: 1.8em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .page-about__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .page-about__features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about__feature-item {
  text-align: center;
  padding: 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__feature-icon {
  width: 150px; /* Increased size from 64px */
  height: 150px; /* Increased size from 64px */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__feature-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__feature-description {
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-about__cta-center {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-about__support-channels {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  text-align: center;
}

.page-about__support-channels li {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #F2FFF6;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #2E7A4E;
}

.page-about__support-icon {
  font-size: 1.3em;
  color: #57E38D; /* Glow */
}

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

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  color: #F2FFF6;
  cursor: pointer;
  font-weight: 600;
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__faq-question:hover {
  background-color: #13994A; /* Darker green from button gradient */
}

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

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

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

.page-about__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.5;
}

.page-about__faq-answer p {
  margin: 0;
  padding-top: 15px;
}

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

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

/* Details element specific styling */
.page-about__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-about__faq-item summary {
  list-style: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-about__hero-content {
    padding: 20px 15px;
    margin-top: -40px; /* Adjust for smaller screens */
  }

  .page-about__main-title {
    font-size: 2em;
  }

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

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

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

  .page-about__container {
    padding: 0 15px;
  }

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

  .page-about__text-block {
    font-size: 0.95em;
  }

  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }

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

  .page-about__feature-icon {
    width: 100px; /* Adjust for mobile */
    height: 100px; /* Adjust for mobile */
  }

  .page-about__cta-center {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-about__cta-center .page-about__btn-primary,
  .page-about__cta-center .page-about__btn-secondary {
    width: 100% !important;
  }

  .page-about__support-channels {
    padding: 0 15px;
  }

  .page-about__support-channels li {
    font-size: 1em;
    padding: 12px 15px;
  }

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

  .page-about__faq-answer {
    font-size: 0.9em;
    padding: 0 15px 15px;
  }

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

  /* All containers with images/content */
  .page-about__hero-section,
  .page-about__story-section,
  .page-about__vision-mission-section,
  .page-about__why-choose-us-section,
  .page-about__commitment-section,
  .page-about__responsible-gaming-section,
  .page-about__support-section,
  .page-about__faq-section,
  .page-about__container,
  .page-about__card,
  .page-about__feature-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-about__hero-section,
  .page-about__story-section,
  .page-about__vision-mission-section,
  .page-about__why-choose-us-section,
  .page-about__commitment-section,
  .page-about__responsible-gaming-section,
  .page-about__support-section,
  .page-about__faq-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}