.page-about {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #1A1A1A;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-about__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-about__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__story-section, .page-about__mission-section, .page-about__why-choose-section, .page-about__responsible-gaming-section, .page-about__join-us-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__story-section, .page-about__mission-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-about__story-container, .page-about__mission-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-about__story-image-wrapper, .page-about__mission-image-wrapper {
  flex: 1;
  min-width: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__story-content, .page-about__mission-content {
  flex: 2;
}

.page-about__story-title, .page-about__mission-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__join-us-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-about__story-text, .page-about__mission-text, .page-about__responsible-gaming-text, .page-about__join-us-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

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

.page-about__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-about__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-about__feature-description {
  color: #cccccc;
  font-size: 0.95em;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-about__cta-button, .page-about__responsible-gaming-link, .page-about__join-us-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.page-about__cta-button:hover, .page-about__responsible-gaming-link:hover, .page-about__join-us-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-about__responsible-gaming-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background-color: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  padding: 40px;
}

.page-about__responsible-gaming-content {
  flex: 2;
}

.page-about__responsible-gaming-image-wrapper {
  flex: 1;
  min-width: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__responsible-gaming-title {
  color: #FFD700;
  text-align: left;
}

.page-about__responsible-gaming-text {
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-about__join-us-section {
  text-align: center;
  background-color: #1A1A1A;
  padding: 80px 20px;
  border-radius: 10px;
  margin-top: 40px;
}

.page-about__join-us-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-about__join-us-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__story-container, .page-about__mission-container, .page-about__responsible-gaming-container {
    flex-direction: column;
  }
  .page-about__story-content, .page-about__mission-content, .page-about__responsible-gaming-content {
    order: 2;
  }
  .page-about__story-image-wrapper, .page-about__mission-image-wrapper, .page-about__responsible-gaming-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
  .page-about__story-title, .page-about__mission-title, .page-about__responsible-gaming-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 120px);
  }
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-about__story-section, .page-about__mission-section, .page-about__why-choose-section, .page-about__responsible-gaming-section, .page-about__join-us-section {
    padding: 40px 15px;
  }
  .page-about__story-title, .page-about__mission-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__join-us-title {
    font-size: 2em;
  }
  .page-about__story-text, .page-about__mission-text, .page-about__responsible-gaming-text, .page-about__join-us-description {
    font-size: 0.95em;
  }
  .page-about__feature-card {
    padding: 20px;
  }
  .page-about__feature-image {
    height: 200px;
  }
  .page-about__feature-heading {
    font-size: 1.3em;
  }
  .page-about__cta-button, .page-about__responsible-gaming-link, .page-about__join-us-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__story-image-wrapper, .page-about__mission-image-wrapper, .page-about__responsible-gaming-image-wrapper {
    min-width: unset;
  }
}