.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 not hidden by fixed header */
}

.page-about__hero-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

.page-about__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-about__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
}

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

.page-about__button {
  display: inline-block;
  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;
  min-width: 180px;
  text-align: center;
}

.page-about__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-about__button--register:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-about__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about__button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-about__mission-section, 
.page-about__history-section, 
.page-about__responsible-gaming-section, 
.page-about__cta-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.page-about__content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-about__section-text {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-about__mission-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-about__mission-icon {
  width: 250px; /* Min size 200px */
  height: 187px; /* Min size 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-about__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-text {
  color: #666666;
  font-size: 1em;
}

.page-about__history-section {
  background-color: #FFFFFF;
}

.page-about__history-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 40px;
}

.page-about__history-image {
  flex: 1;
  min-width: 300px;
  width: 500px;
  height: 375px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-about__history-content {
  flex: 2;
  min-width: 300px;
}

.page-about__history-content .page-about__section-title {
  text-align: left;
}

.page-about__history-content .page-about__section-text {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-about__button--learn-more, .page-about__button--responsible, .page-about__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-about__button--learn-more:hover, .page-about__button--responsible:hover, .page-about__button--join-now:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__hero-section {
    padding: 60px 15px;
  }

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

  .page-about__section-text {
    font-size: 0.95em;
  }

  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button {
    width: 100%;
    max-width: 250px;
  }

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

  .page-about__history-layout {
    flex-direction: column;
    text-align: center;
  }

  .page-about__history-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure content images are not too small */
  }

  .page-about__history-content .page-about__section-title,
  .page-about__history-content .page-about__section-text {
    text-align: center;
  }

  /* Ensure all content images are responsive and not smaller than 200px visually */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  
  .page-about__mission-icon {
    max-width: 100%; /* Ensures it scales down */
    width: 250px; /* Maintain minimum visual size if possible, or scale down gracefully */
    height: auto; /* Allow height to adjust */
  }
}