.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Adjusted for shared header offset */
  padding-bottom: 40px;
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light background for hero */
  color: #333333; /* Dark text for light background */
}

.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;
  text-align: left;
}

.page-no-hu__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #26A9E0; /* Brand color for main title */
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 550px;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: #26A9E0; /* Main brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-no-hu__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

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

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

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

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #26A9E0; /* Brand color for section titles */
}

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

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

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

.page-no-hu__intro-section {
  padding: 60px 0;
  background: #ffffff;
}

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

.page-no-hu__feature-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1; /* Ensure perfect square */
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-no-hu__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
}

.page-no-hu__game-types-section {
  padding: 60px 0;
  background: #26A9E0; /* Darker background for contrast */
  color: #ffffff; /* White text for dark background */
}

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

.page-no-hu__game-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-no-hu__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card images */
  object-fit: cover;
  display: block;
}

.page-no-hu__game-card-content {
  padding: 20px;
  color: #333333;
}

.page-no-hu__game-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-no-hu__game-card-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555555;
}

.page-no-hu__btn-primary--small,
.page-no-hu__btn-secondary--small {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.page-no-hu__guide-section {
  padding: 60px 0;
  background: #f4faff; /* Light background */
}