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

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

.page-about__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-about__section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F; /* Ensure dark background for hero */
  box-sizing: border-box;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

.page-about__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-about__description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-about__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 18px;
  box-sizing: border-box;
}

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

.page-about__btn-secondary {
  display: inline-block;
  background: #11271B;
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, border-color 0.3s ease;
  border: 2px solid #2E7A4E;
  cursor: pointer;
  font-size: 18px;
  box-sizing: border-box;
}

.page-about__btn-secondary:hover {
  background: #0A4B2C;
  border-color: #57E38D;
}

.page-about__story-section,
.page-about__why-choose-us-section,
.page-about__team-section,
.page-about__cta-section {
  padding: 80px 0;
  background-color: #08160F; /* Consistent dark background */
  color: #F2FFF6;
}

.page-about__mission-vision-section,
.page-about__responsible-gaming-section,
.page-about__faq-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG as section background for contrast */
  color: #F2FFF6;
}

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

.page-about__content-grid-reverse {
  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 {
  margin-bottom: 15px;
  font-size: 17px;
  color: #A7D9B8;
}

.page-about__image-block {
  border-radius: 10px;
  overflow: hidden;
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-about__card {
  background-color: #0A4B2C; /* Deep Green for card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-about__card-title {
  font-size: 24px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card p {
  font-size: 16px;
  color: #A7D9B8;
}

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

.page-about__feature-item {
  text-align: center;
  background-color: #11271B;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__feature-title {
  font-size: 22px;
  color: #57E38D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-item p {
  font-size: 16px;
  color: #A7D9B8;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

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

.page-about__team-member {
  text-align: center;
  background-color: #11271B;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-about__team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid #57E38D;
}

.page-about__member-name {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 5px;
  font-weight: bold;
}

.page-about__member-title {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-about__member-description {
  font-size: 15px;
  color: #A7D9B8;
}

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

.page-about__faq-item {
  background-color: #0A4B2C; /* Deep Green for FAQ item background */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #0A4B2C;
}

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

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

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

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #A7D9B8;
  background-color: #0A4B2C;
  border-top: 1px solid #1E3A2A;
}

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__content-grid,
  .page-about__content-grid-reverse {
    grid-template-columns: 1fr;
  }

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

  .page-about__hero-section {
    padding: 40px 20px;
    padding-top: 10px;
  }

  .page-about__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-about__section-title {
    font-size: 32px;
  }

  .page-about__main-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section,
  .page-about__story-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-us-section,
  .page-about__responsible-gaming-section,
  .page-about__team-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 40px 0;
  }

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

  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-about__section-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-about__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-about__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Mobile responsive for images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__image-block,
  .page-about__team-avatar {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .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;
    font-size: 16px;
  }

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

  .page-about__text-block p {
    font-size: 16px;
  }

  .page-about__card-title,
  .page-about__feature-title,
  .page-about__member-name {
    font-size: 20px;
  }

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

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

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 24px;
  }

  .page-about__main-title {
    font-size: 28px;
  }
}