.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 60px 20px;
  background-color: #26A9E0;
  overflow: hidden;
}

.page-cockfighting__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7);
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-cockfighting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-cockfighting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.page-cockfighting__cta-button {
  display: inline-block;
  background-color: #EA7C07;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button:hover {
  background-color: #d16b06; /* Darken #EA7C07 */
}

.page-cockfighting__cta-button--secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-cockfighting__cta-button--secondary:hover {
  background-color: #f0f0f0;
  color: #1e87b7; /* Darken #26A9E0 */
}

.page-cockfighting__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-cockfighting__section--light {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting__section--dark {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit;
}

.page-cockfighting__section-title--light {
  color: #ffffff;
}

.page-cockfighting__section-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: inherit;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__section-subtitle--light {
  color: #ffffff;
}

.page-cockfighting__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__text-block {
  text-align: left;
  margin-bottom: 30px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-cockfighting__text-block--light {
  color: #ffffff;
}

.page-cockfighting__text-block h3 {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cockfighting__text-block--light h3 {
  color: #ffffff;
}

.page-cockfighting__text-block h4 {
  font-size: 1.4em;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-cockfighting__text-block--light h4 {
  color: #ffffff;
}

.page-cockfighting__text-block p {
  margin-bottom: 15px;
}

.page-cockfighting__text-block ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.page-cockfighting__text-block li {
  margin-bottom: 8px;
}

.page-cockfighting__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-cockfighting__faq-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333333;
}

.page-cockfighting__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #ffffff;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: #f0f0f0;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px;
}

.page-cockfighting__faq-answer p {
  margin-bottom: 15px;
}

.page-cockfighting__cta-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__cta-section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-cockfighting__cta-section-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 3em;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-cockfighting__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-cockfighting__hero-title {
    font-size: 2.5em;
  }

  .page-cockfighting__hero-description {
    font-size: 1.1em;
  }

  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting__section {
    padding: 40px 15px;
  }

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

  .page-cockfighting__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-cockfighting__text-block h3 {
    font-size: 1.5em;
  }

  .page-cockfighting__text-block h4 {
    font-size: 1.2em;
  }

  .page-cockfighting__faq-section {
    padding: 40px 15px;
  }

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

  .page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px;
  }

  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 10px 20px;
  }

  .page-cockfighting__cta-section {
    padding: 60px 15px;
  }

  .page-cockfighting__cta-section-title {
    font-size: 2em;
  }

  .page-cockfighting__cta-section-description {
    font-size: 1.1em;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__video-section,
  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper,
  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}