.page-resources-b29-club-faq-deep-dive {
  --primary-color: #1A2E47;
  --secondary-color: #FFD700;
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --bg-light: #F8F8F8;
  --bg-dark: #101F33;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

/* Hero Section */
.page-resources-b29-club-faq-deep-dive__hero {
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-b29-club-faq-deep-dive__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-b29-club-faq-deep-dive__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.page-resources-b29-club-faq-deep-dive__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-resources-b29-club-faq-deep-dive__button--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-b29-club-faq-deep-dive__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-b29-club-faq-deep-dive__button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  margin-left: 15px;
}

.page-resources-b29-club-faq-deep-dive__button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Section Titles and Descriptions */
.page-resources-b29-club-faq-deep-dive__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-resources-b29-club-faq-deep-dive__section-description {
  font-size: 1.1em;
  color: var(--text-dark);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-resources-b29-club-faq-deep-dive__highlight-text {
  color: var(--primary-color);
  font-weight: bold;
}

/* FAQ Section */
.page-resources-b29-club-faq-deep-dive__faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-resources-b29-club-faq-deep-dive__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-resources-b29-club-faq-deep-dive__faq-item {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-resources-b29-club-faq-deep-dive__faq-question {
  font-size: 1.5em;
  color: var(--primary-color);
  padding: 25px 30px;
  margin: 0;
  cursor: pointer;
  background-color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #eee;
}

.page-resources-b29-club-faq-deep-dive__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-b29-club-faq-deep-dive__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

.page-resources-b29-club-faq-deep-dive__faq-answer {
  padding: 0 30px 25px 30px;
  color: var(--text-dark);
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-b29-club-faq-deep-dive__faq-answer.open {
  max-height: 1000px; /* Adjust as needed for content length */
  padding-top: 15px;
}

.page-resources-b29-club-faq-deep-dive__faq-answer p {
  margin-bottom: 15px;
}

.page-resources-b29-club-faq-deep-dive__faq-answer ul,
.page-resources-b29-club-faq-deep-dive__faq-answer ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-resources-b29-club-faq-deep-dive__faq-answer li {
  margin-bottom: 8px;
}

.page-resources-b29-club-faq-deep-dive__faq-answer h4 {
  color: var(--primary-color);
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-resources-b29-club-faq-deep-dive__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-b29-club-faq-deep-dive__link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-b29-club-faq-deep-dive__link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* CTA Banner */
.page-resources-b29-club-faq-deep-dive__cta-banner {
  background: linear-gradient(45deg, var(--primary-color), var(--bg-dark));
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-resources-b29-club-faq-deep-dive__cta-content {
  max-width: 900px;
}

.page-resources-b29-club-faq-deep-dive__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-b29-club-faq-deep-dive__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

/* Floating CTA */
.page-resources-b29-club-faq-deep-dive__floating-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.page-resources-b29-club-faq-deep-dive__floating-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.page-resources-b29-club-faq-deep-dive__floating-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
  animation: none;
}

.page-resources-b29-club-faq-deep-dive__floating-icon {
  font-size: 1.5em;
  margin-right: 10px;
  animation: spin 3s linear infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7); }
  100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

  .page-resources-b29-club-faq-deep-dive__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-b29-club-faq-deep-dive__button {
    padding: 10px 20px;
    font-size: 1em;
    margin-left: 0;
    margin-top: 10px;
  }

  .page-resources-b29-club-faq-deep-dive__button--secondary {
    margin-left: 0;
  }

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

  .page-resources-b29-club-faq-deep-dive__section-description {
    font-size: 1em;
  }

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

  .page-resources-b29-club-faq-deep-dive__faq-answer {
    padding: 0 25px 20px 25px;
  }

  .page-resources-b29-club-faq-deep-dive__cta-title {
    font-size: 2em;
  }

  .page-resources-b29-club-faq-deep-dive__cta-description {
    font-size: 1em;
  }

  .page-resources-b29-club-faq-deep-dive__floating-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-resources-b29-club-faq-deep-dive__floating-icon {
    font-size: 1.2em;
  }
}

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

  .page-resources-b29-club-faq-deep-dive__button {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }

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

  .page-resources-b29-club-faq-deep-dive__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-resources-b29-club-faq-deep-dive__faq-answer {
    padding: 0 20px 18px 20px;
  }

  .page-resources-b29-club-faq-deep-dive__cta-title {
    font-size: 1.8em;
  }

  .page-resources-b29-club-faq-deep-dive__floating-cta {
    bottom: 15px;
    right: 15px;
  }
  .page-resources-b29-club-faq-deep-dive__floating-button {
    padding: 10px 15px;
    font-size: 0.8em;
  }
  .page-resources-b29-club-faq-deep-dive__floating-icon {
    font-size: 1em;
  }
}