.page-about {
  padding-top: 10px; /* Small top padding for content, body handles header offset */
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  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-bottom: 40px;
  background-color: #08160F;
}

.page-about__hero-figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-about__hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* For 1920x1080 */
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no CSS filters */
}

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

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-top: 20px;
  margin-bottom: 15px;
  /* clamp for responsive font size without fixed large values */
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.page-about__intro-text {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-about__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-about__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

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

.page-about__cta-button--secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

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

.page-about__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #F2C14E; /* Gold */
  margin: 15px auto 0;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__text-block p {
  margin-bottom: 15px;
  color: #A7D9B8;
  font-size: 1rem;
}

.page-about__image-figure {
  margin: 0;
}

.page-about__image-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  filter: none; /* Ensure no CSS filters */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__why-choose-us-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-about__feature-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__feature-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-about__feature-card p {
  color: #A7D9B8;
  font-size: 1rem;
}

.page-about__center-button {
  text-align: center;
  margin-top: 20px;
}

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

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

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

.page-about__read-more-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-about__values-section {
  padding: 60px 0;
  background-color: #11271B;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-about__value-item {
  background-color: #0A4B2C;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__value-title {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-about__value-item p {
  color: #A7D9B8;
  font-size: 0.95rem;
}

.page-about__contact-cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-about__contact-text {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* Media Queries for Responsiveness */
@media (min-width: 769px) {
  .page-about__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__content-grid .page-about__text-block:first-child {
    order: 1;
  }
  .page-about__content-grid .page-about__image-figure:last-child {
    order: 2;
  }
  .page-about__content-flex {
    flex-direction: row;
  }
  .page-about__content-flex .page-about__text-block {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 15px;
  }
  .page-about__hero-content {
    padding: 15px;
  }
  .page-about__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem); /* Adjust for smaller screens */
  }
  .page-about__intro-text {
    font-size: 1rem;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-about__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-about__section-title {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__values-list {
    grid-template-columns: 1fr;
  }
  /* Ensure all images are responsive and not smaller than 200px */
  .page-about img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size on mobile too */
    min-height: 200px; /* Enforce minimum size on mobile too */
  }
  /* Specific rule for content images to ensure min size if not already covered */
  .page-about__image-figure img {
    width: 100%; /* Ensure content images fill their container */
    height: auto; /* Maintain aspect ratio */
  }
  .page-about__content-flex {
    flex-direction: column;
  }
}

@media (max-width: 549px) {
  .page-about__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  .page-about__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  .page-about__intro-text,
  .page-about__text-block p,
  .page-about__feature-card p,
  .page-about__value-item p,
  .page-about__contact-text {
    font-size: 0.9rem;
  }
  .page-about__feature-title {
    font-size: 1.2rem;
  }
  .page-about__value-title {
    font-size: 1.1rem;
  }
}