.page-resources-vipph-23-guide {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

.page-resources-vipph-23-guide__hero-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Prevent image overflow */
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
}

.page-resources-vipph-23-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the image to make text readable */
}

.page-resources-vipph-23-guide__hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-vipph-23-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-vipph-23-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-resources-vipph-23-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-vipph-23-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-resources-vipph-23-guide__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-vipph-23-guide__button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-resources-vipph-23-guide__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-vipph-23-guide__button--login:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-resources-vipph-23-guide__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-vipph-23-guide__button--primary:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-resources-vipph-23-guide__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.page-resources-vipph-23-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
  text-align: center;
}

.page-resources-vipph-23-guide__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
}

.page-resources-vipph-23-guide__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-vipph-23-guide__section-paragraph--center {
  text-align: center;
}

.page-resources-vipph-23-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-vipph-23-guide__image--centered {
  display: block;
  margin: 40px auto;
}

.page-resources-vipph-23-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-vipph-23-guide__list-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-vipph-23-guide__list-item strong {
  color: #000000;
}

.page-resources-vipph-23-guide__list-title {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-vipph-23-guide__list-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 0;
}

.page-resources-vipph-23-guide__button-container {
  margin-top: 40px;
}

.page-resources-vipph-23-guide__button-container--center {
  text-align: center;
}

.page-resources-vipph-23-guide__faq-items {
  margin-top: 40px;
}

.page-resources-vipph-23-guide__faq-item {
  background-color: #F8F8F8;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-vipph-23-guide__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #EFEFEF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-vipph-23-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-vipph-23-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-vipph-23-guide__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-vipph-23-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 0 20px 20px 20px;
}

.page-resources-vipph-23-guide__return-link-container {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 40px;
}

.page-resources-vipph-23-guide__return-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-resources-vipph-23-guide__return-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-resources-vipph-23-guide__hero-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-resources-vipph-23-guide__hero-content {
    padding: 60px 15px;
  }

  .page-resources-vipph-23-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-vipph-23-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-vipph-23-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-vipph-23-guide__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-vipph-23-guide__content-area {
    padding: 40px 15px;
  }

  .page-resources-vipph-23-guide__section-title {
    font-size: 2em;
  }

  .page-resources-vipph-23-guide__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-vipph-23-guide__section-paragraph {
    font-size: 0.95em;
  }
}
}