:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --background-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-bg: #2a2a2a;
  --border-color: #444444;
  --hover-color: #ffd700;
}

.page-resources {
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
  line-height: 1.6;
}

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

.page-resources section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-resources section:last-of-type {
  border-bottom: none;
}

.page-resources .section-title {
  font-size: 3em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.page-resources .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-resources .sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
  color: rgba(255, 255, 255, 0.85);
}

.page-resources a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources .button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 20px;
}

.page-resources .primary-button {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.page-resources .primary-button:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources .secondary-button {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources .secondary-button:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-resources .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
  background-color: #000;
}

.page-resources .hero-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources .hero-image {
  width: 100%;
  height: auto;
  max-height: 500px; /* Adjust height as needed */
  object-fit: cover;
  display: block;
  filter: brightness(0.6); /* Slightly dim the image for text contrast */
  border-radius: 0;
}

.page-resources .hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-resources .hero-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-resources .hero-description {
  font-size: 1.3em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-resources .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-resources .cta-button:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Content Grid Layout */
.page-resources .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-resources .content-grid.reverse-grid {
  grid-template-columns: 1fr 1fr;
}

.page-resources .responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-resources .faq-section {
  background-color: #222222;
}

.page-resources .faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
}