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

.page-about__hero-section {
  position: relative;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.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%);
  width: 80%;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  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: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

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

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

.page-about__card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  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.15);
}

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

.page-about__card-text {
  font-size: 1.05em;
  color: #555555;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-about__values-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555555;
  position: relative;
  padding-left: 25px;
}

.page-about__values-list li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
}

.page-about__our-story {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.page-about__story-text {
  font-size: 1.1em;
  color: #444444;
  text-align: justify;
  max-width: 900px;
}

.page-about__story-button {
  display: inline-block;
  background-color: #000000; /* Primary color */
  color: #FFFFFF; /* Register color */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__story-button:hover {
  background-color: #333333;
}

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

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

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

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

.page-about__feature-icon {
  width: 200px; /* Minimum 200px */
  height: 150px; /* Ensure aspect ratio is maintained, or set to auto */
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-about__responsible-gaming {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-about__responsible-text {
  font-size: 1.1em;
  color: #444444;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: justify;
}

.page-about__responsible-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__responsible-button:hover {
  background-color: #e0a53b;
}

.page-about__call-to-action {
  padding: 80px 0;
  background-color: #000000; /* Primary color */
  color: #FFFFFF; /* Register color */
  text-align: center;
}

.page-about__call-to-action-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__call-to-action-button {
  display: inline-block;
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for light button */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-about__call-to-action-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-about__hero-content {
    width: 90%;
    padding: 30px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

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

  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }

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

  .page-about__story-content {
    flex-direction: column;
  }

  .page-about__story-text, .page-about__responsible-text {
    text-align: left;
  }

  .page-about__feature-icon {
    width: 250px;
    height: 187px;
  }

  .page-about__call-to-action-title {
    font-size: 1.8em;
  }

  .page-about__call-to-action-text {
    font-size: 1.1em;
  }

  .page-about__call-to-action-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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

@media (max-width: 480px) {
  .page-about__hero-content {
    padding: 20px;
  }

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

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

  .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__call-to-action-title {
    font-size: 1.6em;
  }
}