.page-resources {
  background-color: var(--body-bg-color, #000000); /* Ensure consistency with body background */
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-resources__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000080, #000000); /* Dark blue to black gradient */
  color: #ffffff;
}

.page-resources__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-resources__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  justify-content: center;
}

.page-resources__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Gold primary button */
  color: #000000; /* Dark text for gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-resources__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-resources__cta-button--secondary {
  background-color: #000080; /* Dark blue secondary button */
  color: #ffffff; /* White text for dark blue button */
  box-shadow: 0 5px 15px rgba(0, 0, 128, 0.3);
}

.page-resources__cta-button--secondary:hover {
  background-color: #000066; /* Darker dark blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 128, 0.4);
}

.page-resources__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
}

/* General Section Styles */
.page-resources__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.page-resources__section--dark {
  background-color: #000080; /* Dark blue background for some sections */
  color: #ffffff;
  padding: 60px 0;
}

.page-resources__section--dark .page-resources__section-description {
  color: #f0f0f0;
}

.page-resources__section--dark .page-resources__section-title {
  color: #FFD700;
}

/* Guides Section */
.page-resources__guides-section {
  padding: 60px 0;
}

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

.page-resources__guide-card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources__guide-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources__guide-card-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin: 0;
}

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

.page-resources__guide-card-title a:hover {
  color: #e6c200;
}

.page-resources__guide-card-excerpt {
  font-size: 0.95em;
  color: #f0f0f0;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-resources__guide-card-link {
  display: inline-block;
  background-color: #000080;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-resources__guide-card-link:hover {
  background-color: #000066;
}

/* News Section */
.page-resources__news-section {
  padding: 60px 0;
}

.page-resources__news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-resources__news-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources__news-item-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-resources__news-item-content {
  padding: 20px;
}

.page-resources__news-item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources__news-item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__news-item-title a:hover {
  color: #e6c200;
}

.page-resources__news-item-excerpt {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-resources__news-item-date {
  font-size: 0.9em;
  color: #aaa;
  display: block;
  margin-bottom: 10px;
}

.page-resources__news-item-link {
  display: inline-block;
  background-color: #000080;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources__news-item-link:hover {
  background-color: #000066;
}

.page-resources__news-cta {
  margin-top: 50px;
}

/* Promotions Section */
.page-resources__promotions-section {
  padding: 60px 0;
}

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

.page-resources__promotion-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources__promotion-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources__promotion-card-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-resources__promotion-card-description {
  font-size: 0.95em;
  color: #f0f0f0;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-resources__promotion-card-link {
  display: inline-block;
  background-color: #000080;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-resources__promotion-card-link:hover {
  background-color: #000066;
}

.page-resources__promotions-cta {
  margin-top: 50px;
}

/* FAQ Section */
.page-resources__faq-section {
  padding: 60px 0;
}

.page-resources__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ item */
}

.page-resources__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1); /* Lighter background for question */
  border: 1px solid rgba(255, 215, 0, 0.2); /* Gold border */
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #FFD700; /* Gold text for question */
}

.page-resources__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-resources__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}