.page-about {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

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

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(26, 26, 46, 0.7); /* Semi-transparent main color background */
  border-radius: 10px;
}

.page-about__hero-title {
  font-size: 3em;
  color: #E9B000; /* Accent color for title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #E9B000; /* Accent color */
  color: #1A1A2E; /* Dark text for accent button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-about__story-section {
  padding: 60px 20px;
  background-color: #1A1A2E; /* Main color background */
}

.page-about__story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__story-content {
  flex: 1;
  min-width: 300px;
}

.page-about__story-title {
  font-size: 2.5em;
  color: #E9B000;
  margin-bottom: 25px;
}

.page-about__story-paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-about__story-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__why-choose-section {
  padding: 60px 20px;
  background-color: #0d0d1a; /* Body background color */
}

.page-about__why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-about__why-choose-title {
  font-size: 2.5em;
  color: #E9B000;
  margin-bottom: 40px;
}

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

.page-about__feature-card {
  background-color: #1A1A2E; /* Main color background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__feature-icon {
  width: 200px; /* Minimum size 200px */
  height: 150px; /* Adjusted height for aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-about__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-about__why-choose-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__why-choose-button:hover {
  background-color: #ffc800;
  transform: translateY(-3px);
}

.page-about__responsible-gaming-section {
  padding: 60px 20px;
  background-color: #1A1A2E; /* Main color background */
  text-align: center;
}

.page-about__responsible-gaming-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__responsible-gaming-title {
  font-size: 2.5em;
  color: #E9B000;
  margin-bottom: 25px;
}

.page-about__responsible-gaming-paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-about__responsible-gaming-link {
  color: #E9B000;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-about__responsible-gaming-link:hover {
  color: #ffc800;
}

.page-about__cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A2E, #0d0d1a); /* Gradient background */
  text-align: center;
}

.page-about__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.page-about__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--primary {
  background-color: #E9B000;
  color: #1A1A2E;
}

.page-about__cta-button--primary:hover {
  background-color: #ffc800;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-about__cta-button--secondary {
  background-color: #1A1A2E; /* Main color */
  color: #E9B000; /* Accent color */
  border: 2px solid #E9B000;
}

.page-about__cta-button--secondary:hover {
  background-color: #2e2e4a;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__story-container {
    flex-direction: column;
  }
  .page-about__story-image {
    min-width: unset;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-about__hero-content {
    max-width: 90%;
  }
  .page-about__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__story-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__story-paragraph, .page-about__feature-description, .page-about__responsible-gaming-paragraph, .page-about__cta-description {
    font-size: 0.95em;
  }
  .page-about__why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-about__feature-icon {
    width: 200px;
    height: 150px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__story-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__hero-content {
    padding: 15px;
  }
  .page-about__story-container, .page-about__why-choose-container, .page-about__responsible-gaming-container, .page-about__cta-container {
    padding: 0 15px;
  }
}