.page-help-center {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.page-help-center__hero-section {
  position: relative;
  margin-bottom: 40px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-help-center__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-help-center__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9; /* Default aspect ratio for hero */
}

.page-help-center__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

.page-help-center__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-help-center__hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #FFF6D6;
}

.page-help-center__hero-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-help-center__hero-button:hover {
  opacity: 0.9;
}

.page-help-center__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  padding: 0 15px;
}

.page-help-center__faq-section,
.page-help-center__guides-section,
.page-help-center__contact-section,
.page-help-center__responsible-gaming-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

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

.page-help-center__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.page-help-center__faq-question {
  font-size: 1.25rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-help-center__faq-answer {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-help-center__faq-link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
}

.page-help-center__faq-link:hover {
  text-decoration: underline;
}

.page-help-center__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-help-center__guide-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-help-center__guide-card-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3; /* 400x300 */
}

.page-help-center__guide-card-title {
  font-size: 1.25rem;
  color: #FFD36B;
  margin: 15px 20px 10px 20px;
  font-weight: bold;
}

.page-help-center__guide-card-title a {
  color: #FFD36B;
  text-decoration: none;
}

.page-help-center__guide-card-title a:hover {
  text-decoration: underline;
}

.page-help-center__guide-card-description {
  font-size: 1rem;
  color: #FFF6D6;
  margin: 0 20px 20px 20px;
}

.page-help-center__contact-description,
.page-help-center__responsible-gaming-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  color: #FFF6D6;
  padding: 0 15px;
}

.page-help-center__contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-help-center__contact-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-help-center__contact-button:hover {
  opacity: 0.9;
}

.page-help-center__responsible-gaming-link {
  display: block;
  text-align: center;
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

.page-help-center__responsible-gaming-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-help-center__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-help-center__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .page-help-center__faq-grid,
  .page-help-center__guide-cards {
    grid-template-columns: 1fr;
  }

  .page-help-center__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-help-center__hero-description,
  .page-help-center__contact-description,
  .page-help-center__responsible-gaming-description {
    font-size: 1rem;
  }

  .page-help-center__faq-question,
  .page-help-center__guide-card-title {
    font-size: 1.1rem;
  }

  .page-help-center__faq-answer,
  .page-help-center__guide-card-description {
    font-size: 0.95rem;
  }
}

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

@media (max-width: 549px) {
  .page-help-center__hero-section,
  .page-help-center__faq-section,
  .page-help-center__guides-section,
  .page-help-center__contact-section,
  .page-help-center__responsible-gaming-section {
    margin-bottom: 40px;
    padding: 0 12px;
  }

  .page-help-center__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .page-help-center__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-help-center__hero-button,
  .page-help-center__contact-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-help-center__contact-options {
    flex-direction: column;
    align-items: center;
  }

  .page-help-center__faq-question,
  .page-help-center__guide-card-title {
    font-size: 1.05rem;
  }

  .page-help-center__faq-answer,
  .page-help-center__guide-card-description {
    font-size: 0.9rem;
  }
}