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

.page-about-us__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content separation */
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF; /* Light text for dark hero background */
}

.page-about-us__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure image scales down but not up beyond its intended max */
  margin-bottom: 20px;
}

.page-about-us__hero-image img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  object-fit: cover;
}

.page-about-us__hero-content {
  max-width: 900px;
  padding: 0 10px;
}

.page-about-us__main-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-about-us__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about-us__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for FCBC45 background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

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

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

.page-about-us__section-title {
  font-size: 2rem;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-about-us__text-block {
  margin-bottom: 30px;
}

.page-about-us__text-block p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-about-us__image-container {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-about-us__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about-us__why-choose-section .page-about-us__section-title {
  color: #000000;
}

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

.page-about-us__grid-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px; /* Ensure minimum height for card content */
}

.page-about-us__grid-item img {
  width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-about-us__grid-item-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.page-about-us__grid-item p {
  font-size: 0.95rem;
  color: #555555;
  flex-grow: 1;
}

.page-about-us__inline-cta {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-about-us__inline-cta:hover {
  color: #e0a53b;
}

.page-about-us__cta-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-about-us__cta-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about-us__cta-button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

.page-about-us__cta-button--download {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-about-us__cta-button--download:hover {
  background-color: #e0a53b;
}

.page-about-us__responsible-gaming-section {
  background-color: #f0f0f0;
  padding: 50px 20px;
  border-radius: 8px;
  text-align: center;
}

.page-about-us__responsible-gaming-section .page-about-us__section-title {
  color: #000000;
}

.page-about-us__link-text {
  display: inline-block;
  margin-top: 20px;
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about-us__link-text:hover {
  color: #FCBC45;
}

.page-about-us__join-us-section {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-about-us__join-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

@media (max-width: 768px) {
  .page-about-us__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-about-us__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-about-us__hero-description {
    font-size: 1rem;
  }

  .page-about-us__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-about-us__section-title {
    font-size: 1.75rem;
  }

  .page-about-us__content-area {
    padding: 30px 15px;
  }

  .page-about-us__grid-item {
    min-height: auto;
  }

  .page-about-us__grid-item img {
    
  }

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

  /* Mobile content area image constraint */
  .page-about-us img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about-us__section-title {
    font-size: 1.5rem;
  }

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

  .page-about-us__grid-item {
    padding: 20px;
  }

  .page-about-us__grid-item img {
    
  }
}