.page-about {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background from custom colors */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image aspect ratio */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Main color for emphasis */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-about__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

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

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

.page-about__mission-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__card-title {
  font-size: 1.6rem;
  color: #FFD36B; /* Glow color for titles */
  margin-bottom: 15px;
}

.page-about__story-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-about__story-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__story-text-block {
  flex: 2;
  min-width: 300px;
}

.page-about__story-text-block p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-about__unique-features-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-about__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.page-about__feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-about__feature-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 10px;
}

.page-about__responsible-gaming-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-about__responsible-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__responsible-text-block {
  flex: 2;
  min-width: 300px;
}

.page-about__responsible-text-block p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-about__cta-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG */
  text-align: center;
}

.page-about__cta-container {
  max-width: 900px;
}

.page-about__cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

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

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text for primary button */
  border: none;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color for secondary text */
  border: 2px solid #F2C14E;
}

.page-about__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__story-content,
  .page-about__responsible-content {
    flex-direction: column;
    text-align: center;
  }

  .page-about__story-image,
  .page-about__responsible-image {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .page-about__story-text-block,
  .page-about__responsible-text-block {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-about__intro-text {
    font-size: 1rem;
  }

  .page-about__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-about__hero-cta,
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-about__container,
  .page-about__mission-card,
  .page-about__feature-item,
  .page-about__cta-container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__hero-image-wrapper {
    max-height: 400px;
  }

  .page-about__hero-content {
    margin-top: 20px;
  }

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

  .page-about__story-image,
  .page-about__responsible-image {
    max-width: 100%;
  }

  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__story-section,
  .page-about__unique-features-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-section {
    padding: 40px 0;
  }
}