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

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

.page-about__hero-section {
  background-color: #0A192F; /* Main brand color for hero background */
  color: #FFD700; /* Auxiliary color for text */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for button */
  color: #0A192F; /* Main color for button text */
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay */
  z-index: 1;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about__mission-vision {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-about__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-about__card p {
  color: #555555;
}

.page-about__our-story {
  padding: 60px 0;
}

.page-about__story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.page-about__story-content p {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
  color: #444444;
}

.page-about__story-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about__why-choose {
  padding: 60px 0;
  background-color: #0A192F;
  color: #f0f0f0;
}

.page-about__why-choose .page-about__section-title {
  color: #FFD700;
}

.page-about__why-choose .page-about__section-title::after {
  background-color: #f0f0f0;
}

.page-about__features-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.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 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.15);
}

.page-about__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__feature-card p {
  color: #cccccc;
}

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

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

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

.page-about__responsible-gaming {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__responsible-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

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

.page-about__responsible-text p {
  margin-bottom: 15px;
  color: #444444;
  text-align: justify;
}

.page-about__responsible-link {
  color: #0A192F;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-about__responsible-button {
  display: inline-block;
  background-color: #0A192F;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__responsible-button:hover {
  background-color: #1a3350;
  transform: translateY(-2px);
}

.page-about__contact-us {
  padding: 60px 0;
  background-color: #e0e0e0;
}

.page-about__contact-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #444444;
}

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

.page-about__contact-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__contact-item-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-about__contact-item p {
  color: #555555;
  margin-bottom: 20px;
}

.page-about__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
  }
  .page-about__content-wrapper {
    flex-direction: column;
  }
  .page-about__responsible-image {
    max-width: 100%;
  }
}

@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__section-title {
    font-size: 2em;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__contact-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content area images must not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__story-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-about__responsible-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__feature-title {
    font-size: 1.4em;
  }
  .page-about__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}