.page-resources {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources__hero-section {
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  padding-bottom: 40px;
}

.page-resources__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-resources__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-resources__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources__hero-button:hover {
  background-color: #e0a538;
}

.page-resources__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-resources__quick-links-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-resources__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources__quick-link-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-resources__quick-link-card:hover {
  transform: translateY(-5px);
}

.page-resources__quick-link-image {
  width: 100%;
  height: 250px; /* Ensure images are large enough */
  object-fit: cover;
}

.page-resources__quick-link-title {
  font-size: 1.5em;
  margin: 20px 15px 10px;
  color: #000000;
}

.page-resources__quick-link-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-resources__quick-link-title a:hover {
  color: #FCBC45;
}

.page-resources__quick-link-text {
  font-size: 1em;
  color: #555555;
  padding: 0 15px;
  flex-grow: 1;
}

.page-resources__quick-link-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin: 20px 15px;
  transition: background-color 0.3s ease;
}

.page-resources__quick-link-button:hover {
  background-color: #333333;
}

.page-resources__comprehensive-guides-section {
  padding: 60px 0;
}

.page-resources__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-resources__article {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources__article-heading {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources__article-subheading {
  font-size: 1.5em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources__article-paragraph {
  font-size: 1em;
  color: #444444;
  margin-bottom: 15px;
}

.page-resources__cta-banner {
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background-color: #000000;
}

.page-resources__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-resources__cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 700px;
  padding: 30px;
}

.page-resources__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-resources__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources__cta-button:hover {
  background-color: #e0a538;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources__hero-title {
    font-size: 2.8em;
  }

  .page-resources__section-title {
    font-size: 2em;
  }

  .page-resources__article-heading {
    font-size: 1.8em;
  }

  .page-resources__article-subheading {
    font-size: 1.3em;
  }

  .page-resources__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources__hero-section {
    min-height: 400px;
    padding-bottom: 20px;
  }

  .page-resources__hero-title {
    font-size: 2.2em;
  }

  .page-resources__hero-description {
    font-size: 1em;
  }

  .page-resources__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-resources__quick-links-grid {
    grid-template-columns: 1fr;
  }

  .page-resources__quick-link-image {
    height: 200px;
  }

  .page-resources__quick-link-title {
    font-size: 1.3em;
  }

  .page-resources__article-heading {
    font-size: 1.6em;
  }

  .page-resources__article-subheading {
    font-size: 1.2em;
  }

  .page-resources__cta-title {
    font-size: 1.8em;
  }

  .page-resources__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  /* Mobile specific image rules */
  .page-resources__hero-image, 
  .page-resources__quick-link-image, 
  .page-resources__cta-image, 
  .page-resources__article img {
    max-width: 100%;
    height: auto;
  }

  .page-resources__quick-link-card img, 
  .page-resources__article img {
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
  }

  /* Ensure no horizontal scroll for content area */
  .page-resources__container {
    overflow-x: hidden;
  }
}