/* style/resources-faq-deep-dive.css */
.page-resources-faq-deep-dive {
  font-family: 'Arial', sans-serif;
  color: #E5DFD3; /* Light text for dark background */
  background-color: #1A202C; /* Primary dark background */
  line-height: 1.6;
}

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

.page-resources-faq-deep-dive__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3A455C 100%); /* Dark gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-faq-deep-dive__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-faq-deep-dive__hero-title .highlight {
  color: #FFD700;
}

.page-resources-faq-deep-dive__hero-subtitle {
  font-size: 1.4em;
  color: #E5DFD3;
  margin-bottom: 30px;
}

.page-resources-faq-deep-dive__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources-faq-deep-dive__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-resources-faq-deep-dive__btn.primary-btn {
  background-color: #FFD700; /* Gold button */
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-resources-faq-deep-dive__btn.primary-btn:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-2px);
}

.page-resources-faq-deep-dive__btn.secondary-btn {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-faq-deep-dive__btn.secondary-btn:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-resources-faq-deep-dive__btn.small-btn {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-resources-faq-deep-dive__btn.large-btn {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-resources-faq-deep-dive__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-faq-deep-dive__content {
  padding: 60px 0;
  background-color: #2D3748; /* Slightly lighter dark background */
}

.page-resources-faq-deep-dive__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-resources-faq-deep-dive__intro-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E5DFD3;
}

.page-resources-faq-deep-dive__intro-text .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-faq-deep-dive__faq-list {
  margin-top: 40px;
}

.page-resources-faq-deep-dive__faq-item {
  background-color: #1A202C;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-faq-deep-dive__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1A202C;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-resources-faq-deep-dive__faq-question:hover {
  background-color: #2c3546;
}

.page-resources-faq-deep-dive__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-faq-deep-dive__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-resources-faq-deep-dive__faq-question .highlight {
  color: #FFD700;
}

.page-resources-faq-deep-dive__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #2D3748;
  color: #E5DFD3;
}

.page-resources-faq-deep-dive__faq-answer.active {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 20px 25px;
}

.page-resources-faq-deep-dive__faq-answer p {
  margin-bottom: 15px;
  color: #E5DFD3;
}

.page-resources-faq-deep-dive__faq-answer .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-faq-deep-dive__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-faq-deep-dive__cta-section {
  background-color: #1A202C;
  padding: 60px 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-faq-deep-dive__cta-section .page-resources-faq-deep-dive__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-faq-deep-dive__cta-section p {
  font-size: 1.2em;
  color: #E5DFD3;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-faq-deep-dive__related-info {
  padding: 60px 0;
  background-color: #1A202C;
  text-align: center;
}

.page-resources-faq-deep-dive__related-info .page-resources-faq-deep-dive__section-title {
  color: #FFD700;
}

.page-resources-faq-deep-dive__related-info p {
  font-size: 1.1em;
  color: #E5DFD3;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-faq-deep-dive__related-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-faq-deep-dive__related-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-faq-deep-dive__hero-title {
    font-size: 2.5em;
  }

  .page-resources-faq-deep-dive__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-faq-deep-dive__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-faq-deep-dive__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-faq-deep-dive__section-title {
    font-size: 2em;
  }

  .page-resources-faq-deep-dive__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-resources-faq-deep-dive__faq-answer {
    padding: 15px 20px;
  }

  .page-resources-faq-deep-dive__cta-section {
    padding: 40px 20px;
  }

  .page-resources-faq-deep-dive__cta-section p {
    font-size: 1em;
  }

  .page-resources-faq-deep-dive__related-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-faq-deep-dive__hero-title {
    font-size: 2em;
  }

  .page-resources-faq-deep-dive__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-faq-deep-dive__section-title {
    font-size: 1.8em;
  }

  .page-resources-faq-deep-dive__faq-question {
    font-size: 1.1em;
  }

  .page-resources-faq-deep-dive__btn.large-btn {
    width: 90%;
  }
}