.page-resources {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A1A; /* Very dark gray for overall background */
}

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

.page-resources__hero {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
  color: #FFFFFF; /* White text on gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-resources__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-resources__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources__hero-cta:hover {
  background-color: #8B0000; /* Dark red on hover */
  color: #FFD700; /* Gold text on hover */
  border-color: #FFD700;
}

.page-resources__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-resources__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.page-resources__introduction,
.page-resources__additional-info,
.page-resources__faq {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-resources__introduction p,
.page-resources__additional-info p,
.page-resources__faq p {
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Dark red underline */
  border-radius: 2px;
}

.page-resources__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 60px;
}

.page-resources__articles {
  padding: 80px 0;
  background-color: #222222; /* Slightly lighter dark gray for article section */
}

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

.page-resources__article-card {
  background-color: #333333; /* Darker gray for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-resources__article-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

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

.page-resources__article-title a {
  color: #FFD700; /* Gold for article titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__article-title a:hover {
  color: #FFC000; /* Slightly darker gold on hover */
}

.page-resources__article-category {
  font-size: 0.9em;
  color: #B0B0B0;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.page-resources__article-btn {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #FFFFFF; /* White text on dark red button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-resources__article-btn:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #8B0000; /* Dark red text on hover */
}

.page-resources__cta-banner {
  background-color: #8B0000; /* Dark red background for CTA */
  color: #FFFFFF;
  padding: 70px 0;
  text-align: center;
}

.page-resources__cta-content {
  max-width: 900px;
}

.page-resources__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for CTA title */
}

.page-resources__cta-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-resources__cta-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold button */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources__cta-btn:hover {
  background-color: #FFFFFF; /* White on hover for strong contrast */
  color: #8B0000; /* Dark red text on hover */
  border-color: #FFFFFF;
}

.page-resources__faq-item {
  background-color: #333333;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-resources__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
}

.page-resources__faq-answer {
  font-size: 1.0em;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .page-resources__hero {
    padding: 60px 0;
  }

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

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

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

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

  .page-resources__article-title {
    font-size: 1.4em;
  }

  .page-resources__article-btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }

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

  .page-resources__cta-description {
    font-size: 0.9em;
  }

  .page-resources__cta-btn {
    padding: 15px 30px;
    font-size: 1em;
  }

  .page-resources__faq-question {
    font-size: 1.2em;
  }
}