.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F5F7FA; /* Background color */
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

.page-no-hu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 30px;
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-no-hu__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-no-hu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
}

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

.page-no-hu__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-no-hu__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.page-no-hu__btn-primary--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.page-no-hu__introduction-section,
.page-no-hu__game-types-section,
.page-no-hu__guide-section,
.page-no-hu__promo-section,
.page-no-hu__faq-section,
.page-no-hu__cta-final-section {
  padding: 60px 0;
}

.page-no-hu__light-bg {
  background-color: #F5F7FA;
  color: #333333;
}

.page-no-hu__dark-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-no-hu__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-no-hu__content-area--center {
  text-align: center;
}

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #E53935;
}

.page-no-hu__section-title--light {
  color: #ffffff;
}

.page-no-hu__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__text-block--light {
  color: #ffffff;
}

.page-no-hu__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-no-hu__game-type-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-no-hu__game-type-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__game-type-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E53935;
}

.page-no-hu__game-type-description {
  font-size: 0.95rem;
  color: #555555;
}

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

.page-no-hu__guide-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-no-hu__guide-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E53935;
}

.page-no-hu__guide-item p {
  font-size: 0.95rem;
  color: #555555;
}

.page-no-hu__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-no-hu__promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
}

.page-no-hu__promo-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E53935;
}

.page-no-hu__promo-card-description {
  font-size: 0.95rem;
  margin-bottom: 25px;
  color: #555555;
}

.page-no-hu__faq-list {
  max-width: 900px;
  margin: 30px auto 0;
}

.page-no-hu__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}

.page-no-hu__faq-question:hover {
  background-color: #f0f0f0;
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #E53935;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: '−';
}

.page-no-hu__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  border-top: 1px solid #E0E0E0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-no-hu__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

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

  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-no-hu__hero-title {
    text-align: center;
    margin-bottom: 15px;
  }

  .page-no-hu__hero-description {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-no-hu__btn-primary--large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .page-no-hu__introduction-section,
  .page-no-hu__game-types-section,
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-final-section {
    padding: 40px 0;
  }

  .page-no-hu__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-no-hu__text-block {
    font-size: 0.95rem;
    text-align: left;
  }

  .page-no-hu__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-no-hu__game-types-list,
  .page-no-hu__guide-list,
  .page-no-hu__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__game-type-item,
  .page-no-hu__guide-item,
  .page-no-hu__promo-card {
    padding: 25px;
  }

  .page-no-hu__game-type-title,
  .page-no-hu__guide-step-title,
  .page-no-hu__promo-card-title {
    font-size: 1.2rem;
  }

  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-no-hu__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }

  /* General image rules for mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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