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

.page-resources__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Main background color for hero */
  color: #FFFFFF; /* Light text for dark hero background */
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-resources__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-resources__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight color for title */
  font-weight: 700;
}

.page-resources__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-resources__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources__hero-button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources__hero-button--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources__hero-button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources__hero-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.page-resources__deep-content,
.page-resources__articles-section,
.page-resources__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-resources__deep-content-title,
.page-resources__articles-title,
.page-resources__cta-title {
  font-size: 2.5rem;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources__deep-content-subtitle {
  font-size: 1.8rem;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-resources__deep-content-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-resources__deep-content-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-resources__deep-content-list li {
  margin-bottom: 10px;
}

.page-resources__deep-content-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-resources__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-resources__call-to-action-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources__call-to-action-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

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

.page-resources__article-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px 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;
}

.page-resources__article-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

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

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

.page-resources__article-summary {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-resources__article-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

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

.page-resources__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-resources__cta-title {
  font-size: 3rem;
  color: #FCBC45;
  margin-bottom: 25px;
}

.page-resources__cta-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-resources__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources__hero-title {
    font-size: 3rem;
  }
  .page-resources__deep-content-title,
  .page-resources__articles-title,
  .page-resources__cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-resources__hero-section {
    padding-bottom: 60px;
  }
  .page-resources__hero-title {
    font-size: 2.5rem;
  }
  .page-resources__hero-description {
    font-size: 1.1rem;
  }
  .page-resources__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources__hero-button {
    width: 100%;
    max-width: 300px;
  }
  .page-resources__deep-content,
  .page-resources__articles-section,
  .page-resources__cta-section {
    padding: 40px 0;
  }
  .page-resources__deep-content-title,
  .page-resources__articles-title,
  .page-resources__cta-title {
    font-size: 1.8rem;
  }
  .page-resources__deep-content-subtitle {
    font-size: 1.5rem;
  }
  .page-resources__deep-content-text,
  .page-resources__deep-content-list {
    font-size: 1rem;
  }
  .page-resources__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-resources__article-image {
    height: 200px;
  }
  .page-resources__article-card-title {
    font-size: 1.3rem;
  }
  .page-resources__article-summary {
    font-size: 0.95rem;
  }
  .page-resources__cta-title {
    font-size: 2.2rem;
  }
  .page-resources__cta-description {
    font-size: 1.1rem;
  }
  .page-resources__cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  /* Ensure all images within .page-resources are responsive and do not overflow */
  .page-resources img {
    max-width: 100%;
    height: auto;
  }
}