.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Main text color for dark background */
  background-color: #B71C1C; /* Page background color */
}

.page-no-hu__hero-section {
  background: #C91F17; /* Main brand color for hero background */
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  color: #FFF5E1;
}

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

.page-no-hu__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold color for title */
}

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

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

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

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for text on gold button */
  border: 2px solid #F4D34D;
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #FFD86A; /* Gold text for secondary button */
  border: 2px solid #FFD86A;
}

.page-no-hu__btn-secondary:hover {
  background: #FFD86A;
  color: #7A0E0E;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu__main-visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-no-hu__intro-section,
.page-no-hu__guide-section,
.page-no-hu__cta-section {
  background-color: #B71C1C; /* Background color for light sections */
  padding: 60px 0;
  color: #FFF5E1;
}

.page-no-hu__features-section,
.page-no-hu__tips-section,
.page-no-hu__faq-section {
  background-color: #D32F2F; /* Card BG color for dark sections */
  padding: 60px 0;
  color: #FFF5E1;
}

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

.page-no-hu__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD86A; /* Gold color for section titles */
  position: relative;
  padding-bottom: 15px;
}

.page-no-hu__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #F4D34D;
  border-radius: 2px;
}

.page-no-hu__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF5E1;
}

.page-no-hu__paragraph a {
  color: #FFD86A;
  text-decoration: underline;
}

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

.page-no-hu__feature-item,
.page-no-hu__tip-item {
  background: rgba(0, 0, 0, 0.2); /* Slightly transparent dark background for items */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #7A0E0E;
}

.page-no-hu__feature-image,
.page-no-hu__tip-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-no-hu__feature-title,
.page-no-hu__tip-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A;
}

.page-no-hu__feature-description,
.page-no-hu__tip-description {
  font-size: 1rem;
  color: #FFF5E1;
}

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

.page-no-hu__guide-step-item {
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent light background for guide steps */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #F2B544;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-no-hu__faq-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #7A0E0E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFD86A;
  cursor: pointer;
  background: #C91F17;
  border-bottom: 1px solid #7A0E0E;
  list-style: none;
}

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  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: 15px 25px 25px;
  font-size: 1rem;
  color: #FFF5E1;
  background: rgba(0, 0, 0, 0.1);
}

/* General image responsiveness */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content {
    text-align: center;
  }

  .page-no-hu__hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    padding: 30px 15px;
  }
  .page-no-hu__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-no-hu__hero-description {
    font-size: 1rem;
  }
  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-no-hu__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-no-hu__intro-section,
  .page-no-hu__features-section,
  .page-no-hu__guide-section,
  .page-no-hu__tips-section,
  .page-no-hu__cta-section,
  .page-no-hu__faq-section {
    padding: 40px 0;
  }
  .page-no-hu__content-area {
    padding: 0 15px;
  }
  .page-no-hu__feature-grid,
  .page-no-hu__tips-grid,
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-no-hu__feature-item,
  .page-no-hu__tip-item,
  .page-no-hu__guide-step-item {
    padding: 20px;
  }
  .page-no-hu__feature-title,
  .page-no-hu__tip-title {
    font-size: 1.4rem;
  }
  .page-no-hu__guide-step-title {
    font-size: 1.3rem;
  }
  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-no-hu__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__hero-image,
  .page-no-hu__main-visual,
  .page-no-hu__feature-image,
  .page-no-hu__tip-image {
    height: auto !important; /* Ensure images scale */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}