.page-resources {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #222222;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-resources section {
  padding: 60px 0;
  text-align: center;
}

.page-resources h1,
.page-resources h2,
.page-resources h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources h1 {
  font-size: 3.2em;
  color: var(--text-light);
}

.page-resources h2 {
  font-size: 2.5em;
  margin-top: 40px;
}

.page-resources h3 {
  font-size: 1.8em;
  color: var(--text-dark);
}

.page-resources p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

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

.page-resources a:hover {
  color: var(--primary-color);
}

.page-resources .cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources .cta-button:hover {
  background: #FFC107; /* Lighter gold */
  transform: translateY(-2px);
}

/* Hero Banner Section */
.page-resources .hero-banner {
  background: linear-gradient(135deg, var(--secondary-color), #A52A2A);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources .hero-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.page-resources .hero-banner .hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-resources .hero-banner h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources .hero-banner p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources .hero-banner .hero-image {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}

.page-resources .hero-banner .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Section Intro */
.page-resources .section-intro {
  background-color: var(--background-light);
}

.page-resources .section-intro h2 {
  color: var(--secondary-color);
}

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

.page-resources .content-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-resources .content-block h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources .content-block h3 a {
  color: var(--secondary-color);
}

.page-resources .content-block h3 a:hover {
  color: var(--primary-color);
}

.page-resources .content-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Section Guide */
.page-resources .section-guide {
  background-color: #ffffff;
}

.page-resources .content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
}

.page-resources .text-content {
  flex: 1;
}

.page-resources .text-content ol {
  margin-left: 20px;
  list-style-type: decimal;
  margin-bottom: 20px;
}

.page-resources .text-content ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources .image-content {
  flex: 1;
  min-width: 300px;
}

.page-resources .guide-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Strategy */
.page-resources .section-strategy {
  background-color: var(--background-light);
}

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

.page-resources .strategy-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources .strategy-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources .strategy-card h3 a {
  color: var(--secondary-color);
}

.page-resources .strategy-card h3 a:hover {
  color: var(--primary-color);
}

.page-resources .strategy-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-resources .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-dark);
}

.faq-question h3 a {
  color: var(--text-dark);
}

.faq-question h3 a:hover {
  color: var(--secondary-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

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

.faq-answer p {
  margin-bottom: 0;
}

/* Section Blog */
.page-resources .section-blog {
  background-color: var(--background-light);
}

.page-resources .section-blog p {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-resources .blog-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources .blog-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources .blog-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-resources .blog-card h3 a {
  color: var(--secondary-color);
}

.page-resources .blog-card h3 a:hover {
  color: var(--primary-color);
}

.page-resources .blog-card p {
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources .read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: bold;
  margin-top: auto;
}

.page-resources .read-more:hover {
  text-decoration: underline;
}

/* Section Conclusion */
.page-resources .section-conclusion {
  background: linear-gradient(135deg, #A52A2A, var(--secondary-color));
  color: var(--text-light);
  padding: 80px 0;
}

.page-resources .section-conclusion h2 {
  color: var(--text-light);
  font-size: 2.8em;
}

.page-resources .section-conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-resources .section-conclusion .cta-button:hover {
  background: #FFC107;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources .hero-banner h1 {
    font-size: 3em;
  }
  .page-resources .hero-banner p {
    font-size: 1.15em;
  }
  .page-resources .content-wrapper {
    flex-direction: column;
  }
  .page-resources .image-content {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-resources .guide-image {
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-resources section {
    padding: 40px 0;
  }
  .page-resources h1 {
    font-size: 2.5em;
  }
  .page-resources h2 {
    font-size: 2em;
  }
  .page-resources h3 {
    font-size: 1.5em;
  }
  .page-resources p {
    font-size: 1em;
  }
  .page-resources .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-resources .hero-banner h1 {
    font-size: 2.5em;
  }
  .page-resources .hero-banner p {
    font-size: 1em;
  }
  .page-resources .content-grid, .page-resources .strategy-grid, .page-resources .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-resources .content-block, .page-resources .strategy-card, .page-resources .blog-card {
    padding: 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources .hero-banner h1 {
    font-size: 2em;
  }
  .page-resources .hero-banner p {
    font-size: 0.9em;
  }
  .page-resources h2 {
    font-size: 1.8em;
  }
  .page-resources h3 {
    font-size: 1.3em;
  }
  .page-resources .cta-button {
    font-size: 1em;
  }
  .page-resources .content-image, .page-resources .guide-image, .page-resources .card-image {
    height: 180px;
  }
}