.page-resources-why-choose-abc8 {
  color: #333333; /* Dark text for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-why-choose-abc8__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  padding: 0;
}

.page-resources-why-choose-abc8__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-resources-why-choose-abc8__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

.page-resources-why-choose-abc8__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-why-choose-abc8__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-why-choose-abc8__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-resources-why-choose-abc8__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-why-choose-abc8__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-why-choose-abc8__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-why-choose-abc8__button--login:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-resources-why-choose-abc8__content-area {
  max-width: 800px; /* Article content width */
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-why-choose-abc8__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-why-choose-abc8__back-link:hover {
  color: #e0a53a;
}

.page-resources-why-choose-abc8__article-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}

.page-resources-why-choose-abc8__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-why-choose-abc8__reason-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}

.page-resources-why-choose-abc8__reason-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-why-choose-abc8__reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-resources-why-choose-abc8__reason-image {
  width: 100%;
  height: 400px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-resources-why-choose-abc8__reason-heading {
  font-size: 1.8em;
  color: #000000;
  padding: 25px 25px 15px;
  margin: 0;
}

.page-resources-why-choose-abc8__reason-text {
  font-size: 1em;
  color: #555555;
  padding: 0 25px 25px;
  line-height: 1.6;
}

.page-resources-why-choose-abc8__conclusion {
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.page-resources-why-choose-abc8__conclusion-heading {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-resources-why-choose-abc8__call-to-action {
  margin-top: 30px;
}

.page-resources-why-choose-abc8__button--final-register {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  font-size: 1.2em;
  padding: 18px 40px;
}

.page-resources-why-choose-abc8__button--final-register:hover {
  background-color: #e0a53a;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-why-choose-abc8__hero-title {
    font-size: 2.8em;
  }
  .page-resources-why-choose-abc8__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-why-choose-abc8 {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
  }
  .page-resources-why-choose-abc8__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-resources-why-choose-abc8__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-resources-why-choose-abc8__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-resources-why-choose-abc8__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-why-choose-abc8__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-why-choose-abc8__content-area {
    padding: 15px;
    margin: 20px auto;
  }
  .page-resources-why-choose-abc8__article-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-resources-why-choose-abc8__paragraph {
    font-size: 0.95em;
  }
  .page-resources-why-choose-abc8__reason-heading {
    font-size: 1.5em;
  }
  .page-resources-why-choose-abc8__reason-image {
    height: 300px;
    max-width: 100%; /* Ensure images are responsive and don't overflow */
  }
  /* Constraint for all images within content area */
  .page-resources-why-choose-abc8 img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-why-choose-abc8__hero-title {
    font-size: 1.8em;
  }
  .page-resources-why-choose-abc8__hero-description {
    font-size: 0.9em;
  }
  .page-resources-why-choose-abc8__button {
    width: 90%;
  }
  .page-resources-why-choose-abc8__article-title {
    font-size: 1.5em;
  }
  .page-resources-why-choose-abc8__reason-heading {
    font-size: 1.3em;
  }
  .page-resources-why-choose-abc8__reason-image {
    height: 250px;
  }
}