.page-cockfighting-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-cockfighting-faq__hero {
  background: linear-gradient(135deg, #007bff 0%, #ffc107 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-cockfighting-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-cockfighting-faq__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #eee;
}

.page-cockfighting-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-cockfighting-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-cockfighting-faq__btn--primary {
  background-color: #ffc107;
  color: #007bff;
  margin-right: 15px;
}

.page-cockfighting-faq__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-cockfighting-faq__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-cockfighting-faq__btn--secondary:hover {
  background-color: #fff;
  color: #007bff;
  transform: translateY(-2px);
}

.page-cockfighting-faq__section {
  padding: 60px 0;
}

.page-cockfighting-faq__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-cockfighting-faq__intro p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-cockfighting-faq__intro strong {
  color: #007bff;
}

.page-cockfighting-faq__faq-list {
  background-color: #fff;
}

.page-cockfighting-faq__faq-item {
  background-color: #f0f8ff;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #007bff;
}

.page-cockfighting-faq__faq-question {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-cockfighting-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-cockfighting-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-cockfighting-faq__faq-answer {
  font-size: 1.05em;
  color: #555;
  text-align: justify;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-cockfighting-faq__faq-answer.active {
  display: block;
  max-height: 2000px; /* Arbitrarily large value for smooth transition */
  padding-top: 15px;
}

.page-cockfighting-faq__faq-answer p {
  margin-bottom: 10px;
}

.page-cockfighting-faq__faq-answer ul,
.page-cockfighting-faq__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 10px;
}

.page-cockfighting-faq__faq-answer li {
  margin-bottom: 5px;
}

.page-cockfighting-faq__faq-answer strong {
  color: #ffc107;
}

.page-cockfighting-faq__faq-answer h4 {
  font-size: 1.3em;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-cockfighting-faq__image--inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-faq__cta {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-cockfighting-faq__cta-content {
  max-width: 900px;
}

.page-cockfighting-faq__cta .page-cockfighting-faq__section-title {
  color: #fff;
  margin-bottom: 30px;
}

.page-cockfighting-faq__cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-cockfighting-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

  .page-cockfighting-faq__hero-subtitle {
    font-size: 1.2em;
  }

  .page-cockfighting-faq__section-title {
    font-size: 2em;
  }

  .page-cockfighting-faq__faq-question {
    font-size: 1.3em;
  }

  .page-cockfighting-faq__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting-faq__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting-faq__btn--primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-faq__hero-title {
    font-size: 2em;
  }

  .page-cockfighting-faq__hero-subtitle {
    font-size: 1em;
  }

  .page-cockfighting-faq__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-faq__faq-question {
    font-size: 1.1em;
  }

  .page-cockfighting-faq__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}