.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-about__hero-section {
  background-color: #0A192F; /* Dark blue primary color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__hero-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-about__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-about__mission-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.page-about__mission-text {
  flex: 1;
  font-size: 1.1em;
}

.page-about__mission-text p {
  margin-bottom: 20px;
}

.page-about__mission-button {
  display: inline-block;
  background-color: #0A192F; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__mission-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-about__mission-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-about__mission-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__values-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__value-card {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-about__value-icon {
  width: 200px; /* Min size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__value-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-about__value-card p {
  font-size: 1em;
  color: #555555;
}

.page-about__responsible-gaming-section {
  background-color: #0A192F;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__responsible-gaming-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-about__responsible-gaming-section .page-about__section-title {
  color: #FFD700;
  padding-top: 0;
}

.page-about__responsible-gaming-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.7;
  opacity: 0.9;
}

.page-about__responsible-gaming-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 14px 28px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__responsible-gaming-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-about__responsible-gaming-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-about__responsible-gaming-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-about__cta-section {
  background: linear-gradient(135deg, #0A192F, #1A2B47);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

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

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-about__cta-button:hover {
  background-color: #e6c200;
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__mission-grid {
    flex-direction: column;
  }
  .page-about__mission-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-section,
  .page-about__mission-section,
  .page-about__values-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__value-card {
    padding: 25px;
  }
  .page-about__value-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  /* Mobile content area image constraint */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-image-wrapper,
  .page-about__mission-image-wrapper,
  .page-about__responsible-gaming-image-wrapper {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-button,
  .page-about__mission-button,
  .page-about__responsible-gaming-button,
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}