.page-about {
  padding-top: 10px; /* Small top padding, main padding-top handled by body in shared.css */
  color: #000000; /* Default text color */
  background-color: #FFFFFF; /* Overall background */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  background-color: #f0f8ff; /* Light background for hero section */
}

.page-about__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

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

.page-about__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-about__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #1e87c0;
}

.page-about__cta-button--secondary {
  background-color: #EA7C07;
}

.page-about__cta-button--secondary:hover {
  background-color: #c96806;
}

.page-about__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-about__mission-vision-section,
.page-about__why-choose-section,
.page-about__responsible-gaming-section {
  padding: 40px 0;
  margin-bottom: 40px;
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block,
.page-about__image-block {
  flex: 1;
}

.page-about__text-block p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444444;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__values-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333333;
  line-height: 1.6;
}

.page-about__values-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  filter: none; /* No image filters */
}

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

.page-about__feature-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-about__feature-icon {
  width: 100%; /* Occupy card width */
  max-width: 250px; /* Max width for feature icons */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  filter: none; /* No image filters */
}

.page-about__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-about__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
}

.page-about__read-more-link {
  display: inline-block;
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-about__read-more-link:hover {
  color: #1e87c0;
  text-decoration: underline;
}

.page-about__contact-cta-section {
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
  margin-top: 40px;
}

.page-about__contact-cta-content {
  max-width: 800px;
}

.page-about__contact-cta-section .page-about__section-title {
  color: #FFFFFF;
  padding-top: 0;
  margin-bottom: 20px;
}

.page-about__contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .page-about__hero-content {
    padding: 20px 15px;
  }
  .page-about__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-about__intro-text {
    font-size: 1rem;
  }
  .page-about__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-about__content-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__content-grid--reverse {
    flex-direction: column;
  }
  .page-about__text-block, .page-about__image-block {
    width: 100%;
  }
  .page-about__content-image, .page-about__feature-icon {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small on mobile */
    min-height: 150px; /* Adjust height for mobile if needed, maintaining aspect ratio */
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__feature-card {
    padding: 20px;
  }
  .page-about__feature-icon {
    margin-bottom: 15px;
  }
  .page-about__contact-cta-section {
    padding: 40px 0;
  }
  .page-about__contact-text {
    font-size: 1rem;
  }
  .page-about__hero-image {
    aspect-ratio: 4 / 3; /* More portrait-like on mobile */
  }
  .page-about__content-image, .page-about__feature-icon {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content images have CSS width/height consistent with HTML attributes or max-width/height: auto */
  .page-about__content-image[width="800"][height="600"] { /* Example for specific image */
    max-width: 100%;
    height: auto;
  }
  .page-about__feature-icon[width="400"][height="300"] { /* Example for specific image */
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-image[width="1200"][height="675"] { /* Example for specific image */
    max-width: 100%;
    height: auto;
  }
}