/* style/resources-nuhu90-security-fairness-guarantee.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #121212; /* Using the specified body background from shared.css */
  --btn-register-bg: #C30808;
  --btn-login-bg: #C30808;
  --btn-register-login-text: #FFFF00;
}

.page-resources-nuhu90-security-fairness-guarantee {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Assume body background is dark */
}

.page-resources-nuhu90-security-fairness-guarantee__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  text-align: center;
  overflow: hidden;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-resources-nuhu90-security-fairness-guarantee__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-resources-nuhu90-security-fairness-guarantee__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(50%); */ /* Removed filter as per strict instruction */
}

.page-resources-nuhu90-security-fairness-guarantee__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-nuhu90-security-fairness-guarantee__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-nuhu90-security-fairness-guarantee__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-resources-nuhu90-security-fairness-guarantee__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-nuhu90-security-fairness-guarantee__btn-primary,
.page-resources-nuhu90-security-fairness-guarantee__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-nuhu90-security-fairness-guarantee__btn-primary {
  background-color: var(--btn-register-bg);
  color: var(--btn-register-login-text);
  border: 2px solid var(--btn-register-bg);
}

.page-resources-nuhu90-security-fairness-guarantee__btn-primary:hover {
  background-color: #a30707;
  border-color: #a30707;
}

.page-resources-nuhu90-security-fairness-guarantee__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-resources-nuhu90-security-fairness-guarantee__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-resources-nuhu90-security-fairness-guarantee__content-section {
  padding: 60px 20px;
}

.page-resources-nuhu90-security-fairness-guarantee__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-resources-nuhu90-security-fairness-guarantee__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

.page-resources-nuhu90-security-fairness-guarantee__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-nuhu90-security-fairness-guarantee__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-nuhu90-security-fairness-guarantee__text-content {
  font-size: 1em;
  margin-bottom: 15px;
}

.page-resources-nuhu90-security-fairness-guarantee__grid-3-columns,
.page-resources-nuhu90-security-fairness-guarantee__grid-2-columns,
.page-resources-nuhu90-security-fairness-guarantee__features-grid {
  display: grid;
  gap: 30px;
}

.page-resources-nuhu90-security-fairness-guarantee__grid-3-columns {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-resources-nuhu90-security-fairness-guarantee__grid-2-columns {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  align-items: center;
}

.page-resources-nuhu90-security-fairness-guarantee__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: center;
}

.page-resources-nuhu90-security-fairness-guarantee__card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  box-sizing: border-box;
}

.page-resources-nuhu90-security-fairness-guarantee__card-image,
.page-resources-nuhu90-security-fairness-guarantee__feature-icon,
.page-resources-nuhu90-security-fairness-guarantee__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-nuhu90-security-fairness-guarantee__card-title,
.page-resources-nuhu90-security-fairness-guarantee__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-resources-nuhu90-security-fairness-guarantee__card-text {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-resources-nuhu90-security-fairness-guarantee__text-block {
  padding: 20px;
}

.page-resources-nuhu90-security-fairness-guarantee__image-wrapper {
  padding: 20px;
  text-align: center;
}

.page-resources-nuhu90-security-fairness-guarantee__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Color Contrast Handling */
.page-resources-nuhu90-security-fairness-guarantee__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-nuhu90-security-fairness-guarantee__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-nuhu90-security-fairness-guarantee__light-bg .page-resources-nuhu90-security-fairness-guarantee__section-title,
.page-resources-nuhu90-security-fairness-guarantee__light-bg .page-resources-nuhu90-security-fairness-guarantee__section-description,
.page-resources-nuhu90-security-fairness-guarantee__light-bg .page-resources-nuhu90-security-fairness-guarantee__sub-title,
.page-resources-nuhu90-security-fairness-guarantee__light-bg .page-resources-nuhu90-security-fairness-guarantee__text-content {
  color: var(--text-dark);
}