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

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2FFF6;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

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

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

.page-about__section:nth-of-type(odd) {
  background-color: #11271B; /* Card BG */
}

.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-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__section-intro {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

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

.page-about__value-icon,
.page-about__game-image,
.page-about__safety-icon,
.page-about__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__value-title,
.page-about__game-title,
.page-about__safety-title,
.page-about__promo-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__value-description,
.page-about__game-description,
.page-about__safety-description,
.page-about__promo-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  width: auto; /* Allow natural width */
}

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

.page-about__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-about__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-about__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
}

.page-about__btn-link {
  background: transparent;
  color: #2AD16F;
  border: 1px solid #2AD16F;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 25px;
}

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

.page-about__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-about__faq-section {
  padding: 60px 0;
}

.page-about__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

.page-about__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__conclusion-text {
  font-size: 1.1rem;
  color: #A7D9B8;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

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

  .page-about__values-grid,
  .page-about__games-grid,
  .page-about__safety-grid,
  .page-about__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about__hero-content {
    margin-top: 20px;
  }

  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-about__section-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-about__card {
    padding: 20px;
  }

  .page-about__value-title,
  .page-about__game-title,
  .page-about__safety-title,
  .page-about__promo-title {
    font-size: 1.3rem;
  }

  .page-about__value-description,
  .page-about__game-description,
  .page-about__safety-description,
  .page-about__promo-description {
    font-size: 0.95rem;
  }

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

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

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

  .page-about__hero-image-wrapper,
  .page-about__container,
  .page-about__card,
  .page-about__values-grid,
  .page-about__games-grid,
  .page-about__safety-grid,
  .page-about__promotions-grid,
  .page-about__hero-actions,
  .page-about__cta-bottom,
  .page-about__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-about__hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Global image reset for safety */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content area image minimum size check (for general images, not specific icons) */
.page-about__section img, 
.page-about__card img {
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

/* Specific overrides for smaller image elements if they exist and are not icons */
/* (e.g., if a logo was allowed, it would be handled differently, but here all images are content images) */

/* Ensure no filter on images */
.page-about img {
  filter: none !important;
}