.page-about {
  color: #333333; /* Dark text for default light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-about__hero-section {
  background-color: #007BFF; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFC107; /* Highlight with secondary color */
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-about__hero-actions {
  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, transform 0.3s ease;
  white-space: nowrap;
}

.page-about__button--primary {
  background-color: #FFC107; /* Secondary brand color */
  color: #0056b3; /* Darker blue for contrast */
  border: 2px solid #FFC107;
}

.page-about__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-about__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%); /* Allowed for general image style, not color change */
}

.page-about__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-about__story-section,
.page-about__mission-section,
.page-about__why-choose-us-section,
.page-about__responsible-gaming-section,
.page-about__cta-section,
.page-about__contact-info {
  padding: 60px 0;
}

.page-about__story-section {
  background-color: #f9f9f9;
}

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

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

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

.page-about__story-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about__card-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

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

.page-about__mission-section {
  background-color: #0056b3; /* Darker blue for contrast */
  color: #ffffff;
}

.page-about__mission-section .page-about__section-title {
  color: #FFC107;
}

.page-about__mission-section .page-about__section-intro {
  color: #e0e0e0;
}

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

.page-about__value-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-about__value-title {
  font-size: 1.4em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-about__value-text {
  font-size: 0.9em;
  color: #f0f0f0;
}

.page-about__why-choose-us-section {
  background-color: #ffffff;
}

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

.page-about__feature-card {
  background-color: #f0f8ff; /* Light blue background */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-about__feature-card:hover {
  background-color: #e6f2ff;
}

.page-about__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-about__feature-text {
  font-size: 0.95em;
  color: #666666;
}

.page-about__responsible-gaming-section {
  background-color: #f9f9f9;
}

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

.page-about__responsible-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

.page-about__responsible-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__responsible-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #555555;
}

.page-about__cta-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-about__contact-info {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-about__contact-item {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-about__contact-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-about__contact-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-about__contact-link {
  display: inline-block;
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-about__contact-link:hover {
  color: #e0a800;
  border-color: #e0a800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 80%;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__section-intro {
    font-size: 0.95em;
  }
  .page-about__story-section,
  .page-about__mission-section,
  .page-about__why-choose-us-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-section,
  .page-about__contact-info {
    padding: 40px 0;
  }
  .page-about__story-card,
  .page-about__value-item,
  .page-about__feature-card,
  .page-about__responsible-card,
  .page-about__contact-item {
    padding: 20px;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }

  /* Mobile image overflow prevention */
  .page-about__hero-image,
  .page-about__story-image,
  .page-about__feature-icon,
  .page-about__responsible-icon {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__button {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}