.page-cockfighting {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #2F6BFF;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure it can take large image */
  margin-bottom: 20px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__hero-content {
  text-align: center;
  padding: 0 20px 40px;
  max-width: 800px;
  color: #FFFFFF;
}

.page-cockfighting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px #A5C4FF;
}

.page-cockfighting__cta-button--center {
  margin-top: 30px;
}

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

.page-cockfighting__about-section,
.page-cockfighting__types-section,
.page-cockfighting__why-choose-section,
.page-cockfighting__guide-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
}

.page-cockfighting__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-cockfighting__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-cockfighting__text-content,
.page-cockfighting__step-list {
  flex: 1;
}

.page-cockfighting__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-cockfighting__type-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-cockfighting__type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-cockfighting__card-title {
  font-weight: 600;
  font-size: 1.3em;
  margin: 20px 20px 10px;
  color: #2F6BFF;
}

.page-cockfighting__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  padding: 0 20px 20px;
  color: #1F2D3D;
  flex-grow: 1;
}

.page-cockfighting__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px 30px;
}

.page-cockfighting__list-item {
  background-color: #FFFFFF;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.6;
  color: #1F2D3D;
  border-left: 5px solid #2F6BFF;
  transition: transform 0.2s ease;
}

.page-cockfighting__list-item:hover {
  transform: translateX(5px);
}

.page-cockfighting__list-item strong {
  color: #000000;
}

.page-cockfighting__step-list {
  list-style: none;
  padding: 0;
}

.page-cockfighting__step-item {
  background-color: #FFFFFF;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.6;
  color: #1F2D3D;
  border-right: 5px solid #6FA3FF;
}

.page-cockfighting__step-item strong {
  color: #2F6BFF;
}

.page-cockfighting__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
  font-weight: 600;
  font-size: 1.15em;
  padding: 20px 25px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  cursor: pointer;
  margin: 0;
  transition: background-color 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  display: none; /* Hidden by default */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-cockfighting__content-wrapper {
    flex-direction: column;
  }

  .page-cockfighting__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-cockfighting__image {
    max-width: 100%;
  }

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

  .page-cockfighting__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-cockfighting__hero-content {
    padding-bottom: 30px;
  }

  .page-cockfighting__main-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 15px;
  }

  .page-cockfighting__hero-content {
    padding: 0 15px 25px;
  }

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

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

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

  .page-cockfighting__about-section,
  .page-cockfighting__types-section,
  .page-cockfighting__why-choose-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__faq-section {
    padding: 40px 0;
  }

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

  .page-cockfighting__image {
    /* Enforce min-width for mobile content images */
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-cockfighting__type-card {
    min-width: 200px;
    min-height: 200px;
  }

  .page-cockfighting__card-image {
    height: 200px;
  }

  /* Ensure all content img elements are responsive and not smaller than 200px */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

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

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

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

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

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