.page-about {
  color: #333333; /* Dark text for light body background */
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  padding-bottom: 60px;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  padding: 0 20px;
  z-index: 1;
}

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

.page-about__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-about__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

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

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

.page-about__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

.page-about__mission-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page-about__mission-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__mission-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-about__mission-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.page-about__mission-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__mission-text {
  font-size: 1em;
  line-height: 1.6;
}

.page-about__why-choose-us {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-about__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__feature-icon {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.page-about__feature-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__feature-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-about__feature-link {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__feature-link:hover {
  background-color: #333333;
}

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

.page-about__responsible-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.page-about__responsible-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__responsible-text-content {
  flex: 1;
}

.page-about__responsible-paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-about__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-container {
  max-width: 900px;
}

.page-about__cta-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.page-about__button {
  display: inline-block;
  padding: 14px 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-color 0.3s ease;
  cursor: pointer;
}

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

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

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

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

.page-about__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 12px 25px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2em;
  }

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

  .page-about__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-about__responsible-content {
    flex-direction: column;
    text-align: center;
  }

  .page-about__responsible-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

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

  .page-about__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure images in content areas are responsive and not too small */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  /* Specific override for any img that might be smaller than 200px due to layout */
  .page-about__mission-icon, .page-about__feature-icon, .page-about__responsible-image {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.6em;
  }

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

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