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

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

.page-cockfighting__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
}

.page-cockfighting__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-cockfighting__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-cockfighting__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-cockfighting__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-cockfighting__button--secondary {
  background-color: #1E90FF; /* Blue */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.page-cockfighting__button--secondary:hover {
  background-color: #1a7ae0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.page-cockfighting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
  position: absolute;
  top: 0;
  left: 0;
}

.page-cockfighting__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-cockfighting__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Blue */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-cockfighting__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

/* Ensure all content area images are at least 200px wide */
.page-cockfighting__section img {
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting__list-item {
  background-color: #e0f2f7; /* Light blue */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border-left: 5px solid #1E90FF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__list-item-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-cockfighting__list-item-description {
  font-size: 1em;
  color: #333333;
}

.page-cockfighting__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-cockfighting__ordered-list .page-cockfighting__list-item {
  border-left: none;
  border-bottom: 3px solid #FFD700;
  background-color: #fff9e6; /* Light gold */
}

.page-cockfighting__ordered-list .page-cockfighting__list-item-title {
  color: #b39700; /* Darker gold */
}

.page-cockfighting__highlight {
  color: #1E90FF;
  font-weight: bold;
}

.page-cockfighting__actions-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__advantage-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-cockfighting__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__advantage-card .page-cockfighting__card-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__advantage-card .page-cockfighting__card-description {
  font-size: 1em;
  color: #555555;
}

.page-cockfighting__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-cockfighting__faq-question {
  font-size: 1.3em;
  color: #1E90FF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-cockfighting__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-cockfighting__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
}

.page-cockfighting__conclusion .page-cockfighting__button {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 3em;
  }

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

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

  .page-cockfighting__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }

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

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

  .page-cockfighting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-cockfighting__text-content {
    font-size: 0.95em;
  }

  .page-cockfighting__list-item-title {
    font-size: 1.3em;
  }

  .page-cockfighting__advantages-grid {
    grid-template-columns: 1fr;
  }

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