.page-resources {
  color: #333333;
}

.page-resources__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px);
  background-color: #0A2342; /* Dark blue background for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

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

.page-resources__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F2C94C; /* Gold for title */
  line-height: 1.2;
}

.page-resources__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-resources__hero-cta {
  display: inline-block;
  background-color: #F2C94C; /* Gold button */
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources__hero-cta:hover {
  background-color: #e0b83e;
  transform: translateY(-3px);
}

.page-resources__introduction-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.page-resources__introduction-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources__introduction-heading {
  font-size: 2.5em;
  color: #0A2342;
  margin-bottom: 25px;
}

.page-resources__introduction-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555555;
}

.page-resources__articles-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}

.page-resources__articles-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-resources__articles-heading {
  font-size: 2.8em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-resources__articles-subheading {
  font-size: 1.2em;
  color: #666666;
}

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

.page-resources__article-card {
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-resources__article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources__article-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources__article-title a {
  color: #0A2342;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__article-title a:hover {
  color: #F2C94C;
}

.page-resources__article-summary {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources__article-button {
  display: inline-block;
  background-color: #0A2342; /* Dark blue button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-resources__article-button:hover {
  background-color: #1a3a60;
}

.page-resources__additional-info-section {
  background-color: #f0f4f8;
  padding: 80px 20px;
}

.page-resources__additional-info-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources__additional-info-heading {
  font-size: 2.5em;
  color: #0A2342;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources__additional-info-subheading {
  font-size: 2em;
  color: #0A2342;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources__additional-info-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
}

.page-resources__cta-banner {
  background-color: #0A2342; /* Dark blue background */
  color: #ffffff;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources__cta-heading {
  font-size: 2.8em;
  color: #F2C94C; /* Gold for CTA heading */
  margin-bottom: 15px;
}

.page-resources__cta-description {
  font-size: 1.3em;
  margin-bottom: 35px;
  line-height: 1.6;
}

.page-resources__cta-button {
  display: inline-block;
  background-color: #F2C94C; /* Gold button */
  color: #0A2342;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources__cta-button:hover {
  background-color: #e0b83e;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .page-resources__hero-title {
    font-size: 3em;
  }
  .page-resources__hero-description {
    font-size: 1.2em;
  }
  .page-resources__articles-heading {
    font-size: 2.5em;
  }
  .page-resources__introduction-heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources {
    padding-top: var(--header-offset, 120px);
  }
  .page-resources__hero-section {
    padding: 60px 15px;
  }
  .page-resources__hero-title {
    font-size: 2.5em;
  }
  .page-resources__hero-description {
    font-size: 1.1em;
  }
  .page-resources__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources__introduction-section, .page-resources__articles-section, .page-resources__additional-info-section {
    padding: 40px 15px;
  }
  .page-resources__introduction-heading, .page-resources__articles-heading, .page-resources__additional-info-heading {
    font-size: 2em;
  }
  .page-resources__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-resources__article-image {
    height: 200px;
  }
  .page-resources__article-title {
    font-size: 1.4em;
  }
  .page-resources__cta-banner {
    padding: 40px 20px;
  }
  .page-resources__cta-heading {
    font-size: 2.2em;
  }
  .page-resources__cta-description {
    font-size: 1.1em;
  }
  .page-resources__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-resources__additional-info-subheading {
    font-size: 1.8em;
  }
  /* Ensure content images do not overflow on mobile */
  .page-resources__articles-grid img,
  .page-resources__additional-info-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources__hero-title {
    font-size: 2em;
  }
  .page-resources__hero-description {
    font-size: 1em;
  }
  .page-resources__articles-heading {
    font-size: 1.8em;
  }
  .page-resources__introduction-heading {
    font-size: 1.8em;
  }
  .page-resources__cta-heading {
    font-size: 1.8em;
  }
}