.page-cockfighting {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-bottom: 40px; /* Add some padding to the bottom of the main content */
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as per instructions */
  padding-bottom: 40px;
  background-color: #F4F7FB; /* Match main background */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image wrapper to content width */
  margin-bottom: 20px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-cockfighting__hero-content {
  width: 100%;
  max-width: 800px; /* Constrain text content width */
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 15px;
  max-width: 100%;
  /* No fixed font-size, rely on clamp if needed, otherwise browser default for H1 is fine */
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-cockfighting__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.3);
}

.page-cockfighting__cta-button--secondary {
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
}

.page-cockfighting__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-cockfighting__paragraph {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
  text-align: justify;
}

.page-cockfighting__image-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__content-image {
  width: 100%;
  max-width: 600px; /* Ensure content images don't exceed a reasonable width */
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__image-caption {
  font-size: 0.9em;
  color: #1F2D3D;
  text-align: center;
  line-height: 1.5;
}

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

.page-cockfighting__feature-item,
.page-cockfighting__tips-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #1F2D3D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.page-cockfighting__feature-item:hover,
.page-cockfighting__tips-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.1);
}

.page-cockfighting__feature-item strong,
.page-cockfighting__tips-item strong {
  color: #2F6BFF;
}

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

.page-cockfighting__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
}

.page-cockfighting__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 30px;
  }

  .page-cockfighting__main-title {
    font-size: 2em; /* Adjust H1 for mobile */
  }

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

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

  .page-cockfighting__paragraph {
    font-size: 0.95em;
  }

  .page-cockfighting__cta-button {
    padding: 12px 24px;
    font-size: 0.95em;
  }

  .page-cockfighting__image-text-block {
    margin: 30px 0;
    padding: 15px;
  }

  .page-cockfighting__content-image {
    max-width: 100%; /* Ensure images are responsive and don't overflow */
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-cockfighting__feature-item,
  .page-cockfighting__tips-item,
  .page-cockfighting__faq-item {
    padding: 15px 20px;
    font-size: 0.95em;
  }

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

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 1.8em;
  }

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