.page-about-us {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about-us__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-about-us__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-about-us__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px 60px;
}

.page-about-us__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFD36B;
  margin-bottom: 20px;
  max-width: 50ch; /* Constraint for H1 length */
  margin-left: auto;
  margin-right: auto;
}

.page-about-us__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 70ch; /* Constraint for intro paragraph length */
  margin-left: auto;
  margin-right: auto;
}

.page-about-us__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-about-us__hero-button:hover {
  transform: translateY(-3px);
}

.page-about-us__mission-section,
.page-about-us__values-section,
.page-about-us__responsible-gaming-section,
.page-about-us__cta-section {
  padding: 60px 0;
  background-color: #0A0A0A;
  border-bottom: 1px solid #3A2A12;
}

.page-about-us__mission-section .page-about-us__container,
.page-about-us__responsible-gaming-section .page-about-us__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about-us__section-title {
  font-size: 2.5em;
  color: #FFD36B;
  margin-bottom: 30px;
  text-align: center;
}

.page-about-us__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-about-us__mission-image,
.page-about-us__responsible-gaming-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-about-us__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-about-us__values-item {
  background-color: #111111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.page-about-us__values-item:hover {
  transform: translateY(-5px);
}

.page-about-us__values-heading {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-about-us__values-description {
  font-size: 1em;
  color: #FFF6D6;
}

.page-about-us__responsible-gaming-link {
  display: inline-block;
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: color 0.2s ease-in-out;
}

.page-about-us__responsible-gaming-link:hover {
  color: #FFD86A;
}

.page-about-us__cta-title {
  font-size: 2.8em;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
}

.page-about-us__cta-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-about-us__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-about-us__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-about-us__cta-button--secondary {
  background-color: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  box-shadow: none;
}

.page-about-us__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-about-us__cta-button--secondary:hover {
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about-us__hero-title {
    font-size: 2em;
  }

  .page-about-us__hero-description,
  .page-about-us__section-text,
  .page-about-us__values-description,
  .page-about-us__cta-description {
    font-size: 1em;
  }

  .page-about-us__section-title {
    font-size: 2em;
  }

  .page-about-us__values-list {
    grid-template-columns: 1fr;
  }

  .page-about-us__cta-title {
    font-size: 2em;
  }

  .page-about-us__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about-us__cta-button {
    width: 80%;
    max-width: 300px;
  }

  .page-about-us__hero-image,
  .page-about-us__mission-image,
  .page-about-us__responsible-gaming-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-about-us img {
    max-width: 100%;
    height: auto;
  }
}

.page-about-us img[width="1200"][height="675"] {
  width: 100%;
  max-width: 1200px; /* Adjust as per actual display width */
  height: auto;
}

.page-about-us img[width="800"][height="600"] {
  width: 100%;
  max-width: 800px; /* Adjust as per actual display width */
  height: auto;
}