.page-resources-latest-s66-access-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--auxiliary-color); /* Matches body background */
}

/* Fixed Header Spacing */
.page-resources-latest-s66-access-guide {
  padding-top: var(--header-offset, 120px); /* Apply header offset to main content */
}

.page-resources-latest-s66-access-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-s66-access-guide__section {
  padding: 60px 0;
}

.page-resources-latest-s66-access-guide__section-title {
  font-size: 36px;
  color: #017439; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-latest-s66-access-guide__section-title--white {
  color: #ffffff;
}

.page-resources-latest-s66-access-guide__sub-title {
  font-size: 24px;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-latest-s66-access-guide__sub-title--white {
  color: #ffffff;
}

.page-resources-latest-s66-access-guide__content-block {
  margin-top: 20px;
}

.page-resources-latest-s66-access-guide__content-block p {
  margin-bottom: 15px;
}

.page-resources-latest-s66-access-guide__content-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  object-fit: cover;
}

/* HERO Section */
.page-resources-latest-s66-access-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #017439, #005f2e); /* Darker green gradient */
  color: #ffffff;
}

.page-resources-latest-s66-access-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-latest-s66-access-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-latest-s66-access-guide__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Custom color for register/login font, applied to main title for impact */
  line-height: 1.2;
}

.page-resources-latest-s66-access-guide__intro-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-s66-access-guide__hero-image {
  width: 100%;
  max-width: 1000px; /* Limit image width for better visual */
  margin-top: 30px;
}

.page-resources-latest-s66-access-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-resources-latest-s66-access-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsiveness */
}

.page-resources-latest-s66-access-guide__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-s66-access-guide__btn-primary {
  background: #017439;
  color: #ffffff;
}

.page-resources-latest-s66-access-guide__btn-primary:hover {
  background: #005f2e;
}

.page-resources-latest-s66-access-guide__btn-register {
  background: #C30808; /* Custom color for register */
  color: #FFFF00; /* Custom font color for register/login */
}

.page-resources-latest-s66-access-guide__btn-register:hover {
  background: #a00606;
}

.page-resources-latest-s66-access-guide__btn-login {
  background: #C30808; /* Custom color for login */
  color: #FFFF00; /* Custom font color for register/login */
}