.page-about {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Stack image above content */
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  background-color: #08160F; /* Ensure consistent background */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image wrapper */
  margin-bottom: 30px; /* Space between image and text */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px; /* Slightly rounded corners for aesthetics */
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-about__description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Main text color for button text */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

.page-about__cta-button--secondary {
  background: #2E7A4E; /* Border color for secondary button */
  color: #F2FFF6;
  margin-left: 20px;
}

.page-about__cta-button--secondary:hover {
  background: #11A84E; /* Primary color for hover */
}

.page-about__cta-button--tertiary {
  background: none;
  border: 2px solid #2E7A4E; /* Border color */
  color: #F2FFF6;
  margin-top: 20px;
}

.page-about__cta-button--tertiary:hover {
  background: rgba(46, 122, 78, 0.2);
}

.page-about__section {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  background-color: #08160F; /* Default section background */
}

.page-about__section:nth-of-type(even) {
  background-color: #11271B; /* Alternate section background */
}

.page-about__section:last-of-type {
  border-bottom: none;
}

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold color for section titles */
  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: #2AD16F; /* Button gradient start color */
  border-radius: 2px;
}

.page-about__sub-title {
  font-size: 1.8rem;
  color: #2AD16F; /* Button gradient start color for sub titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-about__text-block {
  text-align: left;
  font-size: 1.1rem;
  color: #F2FFF6; /* Main text color */
}

.page-about__text-block p {
  margin-bottom: 15px;
}

.page-about__text-block strong {
  color: #F2C14E; /* Gold color for strong text */
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 50px;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__content-grid .page-about__text-block,
.page-about__content-grid .page-about__image-block {
  flex: 1;
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-about__sub-title--faq {
  margin-top: 60px;
  margin-bottom: 30px;
  color: #F2C14E; /* Gold color for FAQ title */
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG color */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2FFF6; /* Main text color */
  background-color: #11271B; /* Card BG color */
  position: relative;
  list-style: none; /* For details/summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-about__faq-question::marker {
  display: none; /* Hide default marker for Firefox */
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F; /* Button gradient start color */
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-about__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.5;
}

/* Popular Games Section */
.page-about__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-about__game-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #F2FFF6; /* Main text color */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-about__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-about__game-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold color for game titles */
  margin: 15px 15px 10px;
}

.page-about__game-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Secondary text color */
  padding: 0 15px 20px;
}

.page-about__cta-wrapper {
  margin-top: 60px;
}

.page-about__text-center {
  text-align: center;
  font-size: 1.1rem;
  color: #F2FFF6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-about__cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__content-grid--reverse {
    flex-direction: column; /* Revert to column for smaller screens */
  }
  .page-about__hero-content {
    padding: 0 15px;
  }
  .page-about__section-title {
    font-size: 2.2rem;
  }
  .page-about__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 10px 15px 40px;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-about__description {
    font-size: 1rem;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-about__section {
    padding: 60px 15px;
  }
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-about__content-grid {
    gap: 30px;
    margin-top: 30px;
  }
  .page-about__game-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__game-image {
    height: 180px;
  }
  .page-about__game-title {
    font-size: 1.2rem;
  }
  .page-about__game-description {
    font-size: 0.9rem;
  }
  .page-about__cta-buttons-wrapper {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  .page-about__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
  }
  .page-about__image-block img,
  .page-about__hero-image,
  .page-about__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__container,
  .page-about__section,
  .page-about__game-card,
  .page-about__faq-list,
  .page-about__cta-buttons-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-about__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
  .page-about__text-center {
    padding: 0 15px;
  }
}