.page-about__hero-section {
  background-color: var(--bg-color);
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  color: var(--text-main-color);
}

.page-about__hero-image-wrapper {
  margin: 0 auto 20px auto;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 12px;
}

.page-about__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9; /* For responsive hero images */
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
  filter: none; /* No filters */
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-color);
  margin-bottom: 15px;
  /* clamp for responsive font size */
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.page-about__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main-color);
}

.page-about__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-main-color);
  background: var(--button-color);
  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__mission-section,
.page-about__values-section,
.page-about__responsible-gaming-section,
.page-about__cta-section {
  background-color: var(--bg-color);
  padding: 60px 20px;
  color: var(--text-main-color);
}

.page-about__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--gold-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-about__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-about__content-wrapper img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
  filter: none; /* No filters */
}

.page-about__text-block {
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.page-about__text-link {
  color: var(--gold-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-about__text-link:hover {
  color: var(--primary-color);
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-about__value-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main-color);
}

.page-about__responsible-gaming-section .page-about__content-wrapper {
  flex-direction: column;
}

.page-about__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-about__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__cta-button--primary {
  background: var(--button-color);
}

.page-about__cta-button--secondary {
  background-color: var(--deep-red-color);
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
}

.page-about__cta-button--secondary:hover {
  background-color: var(--primary-color);
}

@media (min-width: 769px) {
  .page-about__content-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
  }

  .page-about__content-wrapper img {
    max-width: 45%;
  }

  .page-about__text-block {
    max-width: 50%;
    text-align: left;
  }

  .page-about__responsible-gaming-section .page-about__content-wrapper {
    flex-direction: row-reverse; /* Image on right, text on left */
  }
}

@media (max-width: 768px) {
  .page-about__hero-image-wrapper img,
  .page-about__content-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .page-about__main-title {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  }

  .page-about__text-block {
    text-align: left; /* Adjust for mobile readability */
  }

  .page-about__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-about__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 549px) {
  .page-about__section-title {
    font-size: 1.5rem;
  }
  .page-about__hero-description,
  .page-about__cta-description,
  .page-about__text-block {
    font-size: 0.95rem;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__content-wrapper {
    gap: 20px;
  }
  .page-about__text-block {
    text-align: left;
  }
}