/* style/no-hu.css */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #ffffff; /* Assuming body background is white from shared.css */
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding as per rule */
  padding-bottom: 40px;
  background-color: #f8f8f8;
}

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

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

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

.page-no-hu__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background-color: #C30808; /* Use custom color for primary actions like Register/Play */
  color: #FFFF00; /* Custom font color */
  border: 2px solid #C30808;
}

.page-no-hu__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

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

.page-no-hu__btn-secondary:hover {
  background-color: #005f2f;
  border-color: #005f2f;
}

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

.page-no-hu__image-main {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.page-no-hu__content-section {
  padding: 60px 0;
}

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

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

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
}

.page-no-hu__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

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

.page-no-hu__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  transition: transform 0.3s ease;
}

.page-no-hu__feature-card:hover {
  transform: translateY(-5px);
}

.page-no-hu__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-no-hu__card-description {
  font-size: 1rem;
  line-height: 1.6;
}

.page-no-hu__guide-section {
  padding: 60px 0;
}

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

.page-no-hu__guide-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #ffffff;
}

.page-no-hu__guide-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFF00; /* Highlight step titles */
  margin-bottom: 10px;
}

.page-no-hu__guide-item p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
}

.page-no-hu__guide-item a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-no-hu__guide-item a:hover {
  color: #fff;
}

.page-no-hu__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

.page-no-hu__faq-section {
  padding: 60px 0;
}

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

.page-no-hu__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.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: #017439;
  cursor: pointer;
  list-style: none;
}

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

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

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

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: #017439;
  margin-left: 15px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-no-hu__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

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

  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 30px;
  }

  .page-no-hu__hero-container {
    flex-direction: column-reverse; /* Text on top, image below */
    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__main-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
  }

  .page-no-hu__description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 25px;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu a[class*="button"],
  .page-no-hu a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center; /* Center button text on mobile */
  }

  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    justify-content: center;
  }

  .page-no-hu__image-main,
  .page-no-hu__image-content,
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu__content-section,
  .page-no-hu__guide-section,
  .page-no-hu__faq-section {
    padding: 40px 0;
  }

  .page-no-hu__container {
    padding: 20px 15px;
  }

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

  .page-no-hu__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__feature-card {
    padding: 25px;
  }

  .page-no-hu__card-image {
    margin-bottom: 15px;
  }

  .page-no-hu__guide-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__guide-item {
    padding: 20px;
  }

  .page-no-hu__guide-step-title {
    font-size: 1.2rem;
  }

  .page-no-hu__faq-list {
    margin-top: 30px;
  }

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

  .page-no-hu__faq-toggle {
    font-size: 1.5rem;
  }

  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
  }
}