/* style/no-hu.css */
/* Base styles for the page content */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Overall page background */
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Brand color for titles */
  line-height: 1.2;
}

.page-no-hu__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Specific top padding, not var(--header-offset) */
  padding-bottom: 60px;
  background: linear-gradient(to bottom, #111111, #0A0A0A); /* Subtle gradient for hero */
}

.page-no-hu__hero-section .page-no-hu__container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-no-hu__hero-content {
  flex: 1;
  min-width: 300px;
  color: #FFF6D6;
}

.page-no-hu__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #FFD36B; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-no-hu__btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
}

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

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

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

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

.page-no-hu__side-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.page-no-hu__intro-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

.page-no-hu__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Benefits Section */
.page-no-hu__benefits-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}