.page-no-hu__hero-section {
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #ffffff;
  color: #333333;
}
.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: 24px;
}
.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #333333;
}
.page-no-hu__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0;
  max-width: 600px;
}
.page-no-hu__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333;
}
.page-no-hu__highlight {
  font-weight: 600;
  color: #26A9E0;
}
.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: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}
.page-no-hu__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}
.page-no-hu__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}
.page-no-hu__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}
.page-no-hu__btn-secondary:hover {
  background: #e0f2f7;
  color: #1e87b7;
}
.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: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: block;
}

.page-no-hu__content-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  color: #333333;
}
.page-no-hu__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}
.page-no-hu__dark-bg .page-no-hu__section-title,
.page-no-hu__dark-bg .page-no-hu__text-block,
.page-no-hu__dark-bg .page-no-hu__list-item,
.page-no-hu__dark-bg .page-no-hu__faq-question,
.page-no-hu__dark-bg .page-no-hu__faq-answer p {
  color: #ffffff;
}
.page-no-hu__dark-bg .page-no-hu__highlight {
  color: #e0f2f7; /* Lighter shade for contrast on dark blue */
}
.page-no-hu__dark-bg .page-no-hu__text-link {
  color: #ffffff;
  text-decoration: underline;
}
.page-no-hu__content-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}
.page-no-hu__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}
.page-no-hu__dark-bg .page-no-hu__section-title {
  color: #ffffff;
}
.page-no-hu__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}
.page-no-hu__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.page-no-hu__list,
.page-no-hu__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.page-no-hu__list-item {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  text-align: justify;
}
.page-no-hu__list-item::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.page-no-hu__dark-bg .page-no-hu__list-item::before {
  color: #ffffff;
}
.page-no-hu__ordered-list .page-no-hu__list-item::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  color: #26A9E0;
  font-weight: bold;
  left: 0;
}
.page-no-hu__dark-bg .page-no-hu__ordered-list .page-no-hu__list-item::before {
  color: #ffffff;
}
.page-no-hu__text-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: 600;
}
.page-no-hu__text-link:hover {
  color: #1e87b7;
}

.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  color: #333333;
}
.page-no-hu__faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.page-no-hu__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}
.page-no-hu__dark-bg .page-no-hu__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.page-no-hu__dark-bg .page-no-hu__faq-question {
  color: #ffffff;
}
.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}
.page-no-hu__faq-qtext {
  flex-grow: 1;
}
.page-no-hu__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}
.page-no-hu__dark-bg .page-no-hu__faq-toggle {
  color: #ffffff;
}
.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}
.page-no-hu__faq-answer {
  padding: 0 25px 18px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}
.page-no-hu__dark-bg .page-no-hu__faq-answer {
  color: #e0e0e0;
}
.page-no-hu__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-no-hu__conclusion-section {
  padding: 60px 0 80px;
  background-color: #ffffff;
  color: #333333;
  text-align: center;
}
.page-no-hu__conclusion-section .page-no-hu__section-title {
  color: #26A9E0;
}
.page-no-hu__conclusion-section .page-no-hu__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: 2.4em;
  }
  .page-no-hu__section-title {
    font-size: 2em;
  }
  .page-no-hu__hero-container,
  .page-no-hu__content-container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-no-hu__hero-container {
    flex-direction: column-reverse;
    padding: 30px 15px;
    gap: 30px;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-no-hu__main-title {
    font-size: 2em;
    text-align: center;
    max-width: 100%;
  }
  .page-no-hu__hero-description {
    font-size: 1em;
    text-align: center;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    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: 1em;
  }
  .page-no-hu__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu__content-section,
  .page-no-hu__faq-section,
  .page-no-hu__conclusion-section {
    padding: 40px 0;
  }
  .page-no-hu__content-container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-no-hu__text-block,
  .page-no-hu__list-item,
  .page-no-hu__faq-question,
  .page-no-hu__faq-answer {
    font-size: 0.95em;
  }
  .page-no-hu__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-no-hu__faq-item {
    margin-bottom: 10px;
  }
  .page-no-hu__faq-question {
    padding: 15px 20px;
  }
  .page-no-hu__faq-toggle {
    font-size: 1.2em;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
  }
}