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

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

.page-cockfighting .hero-cockfighting {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

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

.page-cockfighting .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 34, 57, 0.7), rgba(0, 0,0, 0.5));
  z-index: 2;
}

.page-cockfighting .hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-cockfighting .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #DC143C; /* Deep Red for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .cta-button:hover {
  background-color: #ff4500; /* Orange-red on hover */
  transform: translateY(-2px);
}

.page-cockfighting .section-title {
  font-size: 2.5em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-cockfighting .subsection-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-cockfighting section {
  padding: 60px 0;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-cockfighting section:nth-of-type(odd) {
  background-color: #fdfdfd;
}

.page-cockfighting p {
  margin-bottom: 15px;
  color: #555555;
  font-size: 1.1em;
}

.page-cockfighting ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555555;
  font-size: 1.1em;
}

.page-cockfighting ul li {
  margin-bottom: 8px;
}

.page-cockfighting .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .secondary-button {
  background-color: #0A2239;
}

.page-cockfighting .secondary-button:hover {
  background-color: #1a3a5a;
}

/* FAQ Styling */
.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0A2239;
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-cockfighting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #DC143C;
}

.page-cockfighting .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: #555555;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-cockfighting .faq-answer p {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-cockfighting .faq-answer .cta-button.small-button {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 10px;
  background-color: #FFD700;
  color: #0A2239;
}

.page-cockfighting .faq-answer .cta-button.small-button:hover {
  background-color: #e6c200;
  color: #0A2239;
}

/* Conclusion section specific */
.page-cockfighting .section-conclusion {
  text-align: center;
  padding: 80px 0;
  background-color: #0A2239;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .section-conclusion .section-title {
  color: #FFD700;
}

.page-cockfighting .section-conclusion .section-title::after {
  background-color: #DC143C;
}

.page-cockfighting .section-conclusion p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 25px;
}

.page-cockfighting .section-conclusion .primary-button {
  background-color: #DC143C;
  color: #ffffff;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-cockfighting .section-conclusion .primary-button:hover {
  background-color: #ff4500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting .hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting .hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting .section-title {
    font-size: 2em;
  }
  .page-cockfighting .subsection-title {
    font-size: 1.5em;
  }
  .page-cockfighting section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-cockfighting {
    height: 400px;
  }
  .page-cockfighting .hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting .hero-description {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting .section-title {
    font-size: 1.8em;
  }
  .page-cockfighting .subsection-title {
    font-size: 1.3em;
  }
  .page-cockfighting p, .page-cockfighting ul li {
    font-size: 1em;
  }
  .page-cockfighting .container {
    padding: 0 15px;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-cockfighting {
    height: 300px;
  }
  .page-cockfighting .hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting .hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting .section-title {
    font-size: 1.5em;
  }
  .page-cockfighting .subsection-title {
    font-size: 1.2em;
  }
}