.page-resources {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A2342;
  line-height: 1.6;
}

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

.page-resources-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A2342, #1a3a60);
  color: #FFFFFF;
}

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

.page-resources-hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-resources-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-hero h1 {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #0A2342;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-resources-section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-section p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-resources-section ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-section ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-resources-section strong {
  color: #FFD700;
}

.page-resources-image-wrapper {
  margin: 30px 0;
  text-align: center;
}

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

/* FAQ Styles */
.page-resources-faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: #1a3a60;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #0A2342;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #12304d;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #FFD700;
  border-left: none;
  padding-left: 0;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #1a3a60;
  color: #E0E0E0;
}

.faq-item.active .faq-answer {
  max-height: 600px; /* Adjust as needed for content */
  padding: 20px 25px;
}

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

.faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

.page-resources-cta-large {
  font-size: 1.3em;
  padding: 18px 50px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-hero {
    padding: 40px 15px;
  }

  .page-resources-hero h1 {
    font-size: 2.2em;
  }

  .page-resources-hero p {
    font-size: 1em;
  }

  .page-resources-cta-button {
    padding: 12px 30px;
    font-size: 0.95em;
  }

  .page-resources-section {
    padding: 40px 0;
  }

  .page-resources-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-resources-section h3 {
    font-size: 1.5em;
    padding-left: 10px;
  }

  .page-resources-section ul {
    margin-left: 20px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 1.8em;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }

  .page-resources-cta-large {
    font-size: 1.1em;
    padding: 15px 40px;
  }
}

@media (max-width: 480px) {
  .page-resources-hero h1 {
    font-size: 1.8em;
  }

  .page-resources-hero p {
    font-size: 0.9em;
  }

  .page-resources-section h2 {
    font-size: 1.8em;
  }

  .page-resources-section h3 {
    font-size: 1.3em;
  }

  .faq-question h3 {
    font-size: 1em;
  }

  .faq-toggle {
    font-size: 1.5em;
  }
}