.page-cockfighting {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif; /* A common, readable font */
  line-height: 1.6;
}

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

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for the hero section */
  padding-bottom: 40px;
  background-color: #F4F7FB; /* Use background color from scheme */
}

.page-cockfighting__hero-image {
  width: 100%;
  max-width: 1200px; /* Constrain hero image to container width */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px; /* Space between image and content */
  object-fit: cover; /* Ensure image covers the area */
  min-width: 200px; /* Min size constraint */
  min-height: 200px; /* Min size constraint */
}

.page-cockfighting__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-cockfighting__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

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

.page-cockfighting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
  font-size: 1em;
  border: none; /* No default border */
}

.page-cockfighting__btn--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-cockfighting__btn--primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly different gradient on hover */
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__btn--secondary {
  background-color: #FFFFFF; /* Card BG */
  color: #2F6BFF; /* Main color for text */
  border: 1px solid #D6E2FF; /* Border color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__btn--secondary:hover {
  background-color: #F4F7FB; /* Background color on hover */
  color: #2F6BFF;
  border-color: #A5C4FF; /* Glow color on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  min-width: unset; /* Override min-width for smaller buttons */
}

.page-cockfighting__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
  min-width: 180px;
}


.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-cockfighting__features-section,
.page-cockfighting__guide-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
  padding: 60px 0;
}

.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-cockfighting__feature-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border color */
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.15); /* Subtle glow on hover */
}

.page-cockfighting__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Min size constraint */
  min-height: 200px; /* Min size constraint */
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #2F6BFF; /* Main color */
  margin-bottom: 10px;
}

.page-cockfighting__card-description {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

.page-cockfighting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-cockfighting__step-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border: 1px solid #D6E2FF; /* Border color */
}

.page-cockfighting__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2F6BFF; /* Main color */
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(47, 107, 255, 0.4); /* Glow effect */
}

.page-cockfighting__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-cockfighting__step-description {
  font-size: 0.95em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
}

.page-cockfighting__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-item:last-child {
  margin-bottom: 0;
}

.page-cockfighting__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #2F6BFF; /* Main color */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-cockfighting__faq-question::after {
  content: '+';
  font-size: 1.5em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  padding-top: 5px;
}

.page-cockfighting__cta-section {
  text-align: center;
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%); /* Gradient background using main and accent colors */
  padding: 80px 20px;
  border-radius: 15px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__cta-title {
  font-size: clamp(2em, 3.5vw, 3em);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__cta-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

  .page-cockfighting__description {
    font-size: 1em;
  }

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

  .page-cockfighting__btn {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-cockfighting__features-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-section {
    padding: 40px 0;
  }

  .page-cockfighting__feature-card,
  .page-cockfighting__step-card {
    padding: 20px;
  }

  .page-cockfighting__feature-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images don't shrink too small */
    min-height: 200px;
  }

  /* Crucial mobile image overflow fix */
  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
  }

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

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

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

/* Ensure all content images meet the minimum size requirement in CSS */
.page-cockfighting__features-grid img,
.page-cockfighting__guide-steps img {
  min-width: 200px;
  min-height: 200px;
}