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

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

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

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

.page-about__section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-about__dark-section {
  background-color: #08160F; /* Background */
}

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

.page-about__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
}

.page-about__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-about__grid-three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-about__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-about__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about__list-item {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-about__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-size: 0.9em;
  line-height: 1.6;
}

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

.page-about__image--large {
  max-width: 1000px;
}

.page-about__image--medium {
  max-width: 800px;
}

.page-about__security-card, .page-about__cockfighting-card, .page-about__responsible-gaming-card {
  text-align: center;
  margin-top: 40px;
}

.page-about__security-card .page-about__image, 
.page-about__cockfighting-card .page-about__image, 
.page-about__responsible-gaming-card .page-about__image {
  max-width: 600px; /* Specific width for these images within card */
  margin-top: 20px;
}

.page-about__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */\  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
  border: none;
  cursor: pointer;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-about__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #57E38D; /* Glow */
  font-size: 0.95em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #57E38D; /* Glow */
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
}

.page-about__btn-secondary:hover {
  background-color: #57E38D; /* Glow */
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

.page-about__cta-bottom {
  text-align: center;
  padding: 60px 20px;
  background-color: #11271B; /* Card BG - slightly different background for CTA */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-about__cta-title {
  font-size: 2.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 0;
  background-color: #08160F;
}

.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: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

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

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__grid-three-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-about__main-title {
    font-size: 2em;
  }

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

  .page-about__grid-two-columns,
  .page-about__grid-three-columns {
    grid-template-columns: 1fr;
  }

  .page-about__hero-section,
  .page-about__section,
  .page-about__cta-bottom {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-about__hero-image-wrapper,
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__faq-item,
  .page-about__security-card,
  .page-about__cockfighting-card,
  .page-about__responsible-gaming-card,
  .page-about__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    text-align: center;
  }

  .page-about__cta-button {
    margin-top: 20px;
  }

  .page-about__cta-bottom .page-about__cta-button {
    margin-top: 30px;
  }

  .page-about__hero-content {
    padding: 0;
  }

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

  .page-about__card {
    padding: 25px;
  }

  .page-about__card-title {
    font-size: 1.5em;
  }

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

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

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

  .page-about__cta-title {
    font-size: 1.8em;
  }

  .page-about__cta-description {
    font-size: 1em;
  }

  .page-about__grid-two-columns .page-about__card .page-about__btn-secondary {
    width: auto !important; /* Allow secondary buttons to adjust width */
    max-width: 100% !important;
  }

  .page-about__grid-three-columns .page-about__card .page-about__btn-secondary {
    width: auto !important; /* Allow secondary buttons to adjust width */
    max-width: 100% !important;
  }
}

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