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

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

.page-about__hero-section {
  position: relative;
  background-color: #2F6BFF; /* Main color as fallback for hero background */
  padding-bottom: 20px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1920px; /* Match request size for potential high-res image */
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px; /* Space between image and content */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

.page-about__hero-content {
  padding: 0 20px;
  max-width: 900px;
  color: #FFFFFF; /* White text on dark hero background */
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3em); /* H1 clamp for responsiveness */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

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

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

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: 700;
}

.page-about__mission-section,
.page-about__why-us-section,
.page-about__responsible-gaming-section,
.page-about__join-us-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-about__join-us-section {
  background-color: #2F6BFF; /* Main color */
  color: #FFFFFF;
}

.page-about__mission-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.page-about__mission-image {
  max-width: 100%;
  width: 600px; /* Example display width */
  height: 450px; /* Example display height */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__mission-text {
  font-size: 1.1em;
  max-width: 800px;
  color: #1F2D3D;
}

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

.page-about__why-us-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border color */
}

.page-about__why-us-item:hover {
  transform: translateY(-5px);
}

.page-about__item-title {
  font-size: 1.4em;
  color: #2F6BFF; /* Main color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__item-description {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

.page-about__game-diversity-image {
  max-width: 100%;
  width: 800px; /* Example display width */
  height: 600px; /* Example display height */
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__responsible-gaming-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #1F2D3D;
}

.page-about__support-link {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  color: #2F6BFF; /* Main color */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-about__support-link:hover {
  color: #6FA3FF; /* Accent color */
  text-decoration: underline;
}

.page-about__security-support-image {
  max-width: 100%;
  width: 600px; /* Example display width */
  height: 450px; /* Example display height */
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__join-us-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFFFFF;
}

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

.page-about__cta-button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
}

.page-about__cta-button--primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-about__cta-button--secondary {
  background-color: #6FA3FF; /* Accent color */
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.page-about__cta-button--secondary:hover {
  background-color: #FFFFFF;
  color: #2F6BFF; /* Main color */
  border-color: #2F6BFF;
}

/* Ensure all images within the main content area meet min size */
.page-about img {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%; /* For general responsive behavior */
    height: auto;    /* Maintain aspect ratio */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-about__mission-content {
    flex-direction: column;
  }

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

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

  /* Mobile overflow prevention */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}