.page-index-about-us-glance {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-index-about-us-glance__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-about-us-glance__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-about-us-glance__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-about-us-glance__hero-section {
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background-color: #F4F7FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 50px;
}

.page-index-about-us-glance__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-index-about-us-glance__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-about-us-glance__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-index-about-us-glance__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #2F6BFF;
  margin-bottom: 20px;
}

.page-index-about-us-glance__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-about-us-glance__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
  border: none;
  cursor: pointer;
}

.page-index-about-us-glance__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-index-about-us-glance__cta-button--secondary {
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
  margin-left: 20px;
}

.page-index-about-us-glance__cta-button--secondary:hover {
  box-shadow: 0 6px 20px rgba(111, 163, 255, 0.6);
}

.page-index-about-us-glance__cta-button--centered {
  display: block;
  margin: 40px auto 0;
  max-width: 250px;
  text-align: center;
}

.page-index-about-us-glance__overview-section,
.page-index-about-us-glance__why-choose-section,
.page-index-about-us-glance__commitment-section,
.page-index-about-us-glance__contact-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-index-about-us-glance__overview-section {
  background-color: #F4F7FB;
}

.page-index-about-us-glance__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-about-us-glance__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-index-about-us-glance__text-content {
  flex: 1;
}

.page-index-about-us-glance__text-content p,
.page-index-about-us-glance__commitment-description,
.page-index-about-us-glance__contact-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-index-about-us-glance__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-about-us-glance__products-section {
  padding: 80px 0;
  background-color: #F4F7FB;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-index-about-us-glance__products-description {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-about-us-glance__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-index-about-us-glance__game-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.page-index-about-us-glance__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-about-us-glance__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-index-about-us-glance__benefits-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-about-us-glance__benefits-list li {
  background-color: #FFFFFF;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1F2D3D;
  border-left: 5px solid #2F6BFF;
  transition: transform 0.2s ease;
}

.page-index-about-us-glance__benefits-list li:last-child {
  margin-bottom: 0;
}

.page-index-about-us-glance__benefits-list li:hover {
  transform: translateX(5px);
}

.page-index-about-us-glance__benefits-list strong {
  color: #000000;
}

.page-index-about-us-glance__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* --- Responsive Styles --- */
@media (max-width: 849px) {
  .page-index-about-us-glance__content-wrapper,
  .page-index-about-us-glance__content-wrapper--reversed {
    flex-direction: column;
    text-align: center;
  }

  .page-index-about-us-glance__image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .page-index-about-us-glance__text-content {
    order: 2;
  }

  .page-index-about-us-glance__content-wrapper--reversed .page-index-about-us-glance__image {
    order: 1;
  }

  .page-index-about-us-glance__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-index-about-us-glance__hero-description {
    font-size: 1rem;
  }

  .page-index-about-us-glance__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-index-about-us-glance__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .page-index-about-us-glance__game-card img {
    
  }

  .page-index-about-us-glance__contact-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-about-us-glance__cta-button--secondary {
    margin-left: 0;
  }

  .page-index-about-us-glance__cta-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-index-about-us-glance__benefits-list li {
    text-align: left;
  }
}

@media (max-width: 549px) {
  .page-index-about-us-glance__container {
    padding: 15px;
  }

  .page-index-about-us-glance__hero-section,
  .page-index-about-us-glance__overview-section,
  .page-index-about-us-glance__products-section,
  .page-index-about-us-glance__why-choose-section,
  .page-index-about-us-glance__commitment-section,
  .page-index-about-us-glance__contact-section {
    padding: 50px 0;
  }

  .page-index-about-us-glance__game-grid {
    grid-template-columns: 1fr;
  }

  .page-index-about-us-glance__game-card img {
    height: 200px;
  }

  .page-index-about-us-glance__hero-image {
    border-radius: 0;
  }

  .page-index-about-us-glance__image {
    border-radius: 0;
  }

  .page-index-about-us-glance__text-content p,
  .page-index-about-us-glance__commitment-description,
  .page-index-about-us-glance__contact-description {
    font-size: 0.95rem;
  }
}

/* Ensure all content area images are responsive and do not overflow */
@media (max-width: 768px) {
  .page-index-about-us-glance img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-index-about-us-glance {
    overflow-x: hidden;
  }
}

/* Content area image CSS dimensions check for minimum size */
.page-index-about-us-glance__hero-image,
.page-index-about-us-glance__image,
.page-index-about-us-glance__game-card img {
    min-width: 200px;
    min-height: 200px;
}

/* Override specific card image height for mobile if needed for larger display */
@media (max-width: 549px) {
  .page-index-about-us-glance__game-card img {
    min-height: 200px; /* Ensure mobile card images are not too small */
  }
}