.page-resources {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-resources__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  box-sizing: border-box;
}

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

.page-resources__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

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

.page-resources__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

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

.page-resources__btn-primary,
.page-resources__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  box-sizing: border-box;
}

.page-resources__btn-primary {
  background-color: #FFD700;
  color: #0a0a0a;
  border: 2px solid #FFD700;
}

.page-resources__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources__btn-secondary:hover {
  background-color: #FFD700;
  color: #0a0a0a;
}

.page-resources__intro-section,
.page-resources__guides-section,
.page-resources__strategies-section,
.page-resources__news-section,
.page-resources__video-section,
.page-resources__faq-section,
.page-resources__cta-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources__section-title,
.page-resources__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-resources__section-text {
  margin-top: 20px;
}

.page-resources__section-description a,
.page-resources__section-text a,
.page-resources__card-text a,
.page-resources__strategy-text-block a,
.page-resources__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources__section-description a:hover,
.page-resources__section-text a:hover,
.page-resources__card-text a:hover,
.page-resources__strategy-text-block a:hover,
.page-resources__faq-answer a:hover {
  text-decoration: underline;
}

.page-resources__guides-grid,
.page-resources__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources__guide-card,
.page-resources__news-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources__guide-card:hover,
.page-resources__news-card:hover {
  transform: translateY(-5px);
}

.page-resources__guide-card img,
.page-resources__news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure images are responsive */
}

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

.page-resources__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources__card-title a:hover {
  text-decoration: underline;
}

.page-resources__card-text {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
  text-align: left;
}

.page-resources__card-date {
  font-size: 0.85em;
  color: #888888;
  padding: 0 20px;
  margin-bottom: 10px;
  text-align: left;
}

.page-resources__card-link {
  display: block;
  padding: 10px 20px;
  background-color: #8B0000;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-resources__card-link:hover {
  background-color: #b20000;
}

.page-resources__strategies-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-resources__strategy-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
}

.page-resources__strategy-text-block {
  flex: 1;
  text-align: left;
}

.page-resources__strategy-text-block p {
  color: #f0f0f0;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-resources__strategy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-resources__strategy-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 20.42L2.79 14.21 5.62 11.38 9 14.76 18.38 5.38 21.21 8.21z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1.05em;
}

.page-resources__strategy-list li strong {
  color: #FFD700;
}

.page-resources__view-all-news {
  text-align: center;
  margin-top: 50px;
}

.page-resources__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-resources__video-cta {
  margin-top: 30px;
  text-align: center;
  display: block;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #3a3a3a;
  color: #FFD700;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources__faq-question:hover {
  background-color: #4a4a4a;
}

.page-resources__faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1em;
}

.page-resources__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources__faq-item.active .page-resources__faq-toggle {
  transform: rotate(45deg);
}

.page-resources__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: #2a2a2a;
}

.page-resources__faq-item.active .page-resources__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #f0f0f0;
  text-align: left;
}

.page-resources__faq-cta {
  text-align: center;
  margin-top: 50px;
}

.page-resources__cta-section {
  text-align: center;
  background-color: #0a0a0a;
  padding: 100px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-resources__cta-section .page-resources__btn-primary,
.page-resources__cta-section .page-resources__btn-secondary {
  margin: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources__hero-title {
    font-size: 2.8em;
  }
  .page-resources__hero-description {
    font-size: 1.1em;
  }
  .page-resources__section-title,
  .page-resources__cta-title {
    font-size: 2em;
  }
  .page-resources__strategies-content {
    flex-direction: column;
  }
  .page-resources__strategy-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-resources {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources__hero-title {
    font-size: 2.2em;
  }
  .page-resources__hero-description {
    font-size: 1em;
  }
  .page-resources__btn-primary,
  .page-resources__btn-secondary {
    width: calc(100% - 30px) !important;
    max-width: 100% !important;
    margin: 10px auto !important;
    display: block !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources__intro-section,
  .page-resources__guides-section,
  .page-resources__strategies-section,
  .page-resources__news-section,
  .page-resources__video-section,
  .page-resources__faq-section,
  .page-resources__cta-section {
    padding: 40px 0;
    margin-bottom: 10px;
  }
  .page-resources__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources__section-title,
  .page-resources__cta-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources__section-description,
  .page-resources__section-text,
  .page-resources__cta-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .page-resources__guides-grid,
  .page-resources__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources__guide-card img,
  .page-resources__news-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources__strategy-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources__strategy-text-block {
    text-align: center;
  }
  .page-resources__strategy-list {
    padding-left: 20px;
  }
  .page-resources__strategy-list li {
    background-size: 16px;
    padding-left: 25px;
    font-size: 1em;
  }
  .page-resources__video-wrapper {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources__faq-question {
    padding: 15px;
    font-size: 1em;
  }
  .page-resources__faq-question h3 {
    font-size: 0.95em;
  }
  .page-resources__faq-answer {
    padding: 0 15px;
  }
  .page-resources__faq-item.active .page-resources__faq-answer {
    padding: 15px !important;
  }
  .page-resources__faq-answer p {
    text-align: left;
  }
  .page-resources__video-section .page-resources__container,
  .page-resources__cta-section .page-resources__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-resources__hero-title {
    font-size: 1.8em;
  }
  .page-resources__hero-description {
    font-size: 0.9em;
  }
  .page-resources__section-title,
  .page-resources__cta-title {
    font-size: 1.5em;
  }
  .page-resources__btn-primary,
  .page-resources__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-resources__guide-card img,
  .page-resources__news-card img {
    
  }
}