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

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using auxiliary and main color for hero background */
  color: #FFFFFF;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%;
}

.page-about__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0EFFF;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-about__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__mission-vision-section, .page-about__why-choose-us-section, .page-about__responsible-gaming-section, .page-about__contact-cta-section {
  padding: 40px 0;
}

.page-about__why-choose-us-section {
  background-color: #FFFFFF; /* Card BG */
}

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

.page-about__feature-card {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border color */
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
}

.page-about__feature-image {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px auto;
  border-radius: 5px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__feature-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
}

.page-about__feature-description {
  font-size: 1em;
  color: #1F2D3D;
}

.page-about__secondary-cta-button {
  display: inline-block;
  background-color: #6FA3FF; /* Auxiliary color */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-about__secondary-cta-button:hover {
  background-color: #2F6BFF; /* Main color */
}

.page-about__text-link {
  color: #2F6BFF; /* Main color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.page-about__text-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__container {
    padding: 15px;
  }

  .page-about__main-title {
    font-size: clamp(2em, 8vw, 2.8em); /* Clamp for h1 font size */
  }

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

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

  .page-about__cta-button {
    padding: 10px 20px;
  }

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

  .page-about__hero-image, .page-about__image, .page-about__feature-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
  .page-about__hero-image-wrapper img,
  .page-about__image,
  .page-about__feature-card img {
    max-width: 100%;
    height: auto;
  }
}