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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding to avoid header overlap */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  position: relative;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

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

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

.page-cockfighting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  /* clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

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

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

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 10px 25px rgba(47, 107, 255, 0.4);
  transform: translateY(-2px);
}

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

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

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

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

.page-cockfighting__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

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

.page-cockfighting__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.page-cockfighting__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__cta-section {
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  padding: 80px 0;
  color: #FFFFFF;
  text-align: center;
}

.page-cockfighting__cta-section .page-cockfighting__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-cockfighting__cta-content {
  max-width: 800px;
}

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

.page-cockfighting__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #D6E2FF;
}

.page-cockfighting__cta-section .page-cockfighting__cta-button {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-cockfighting__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-cockfighting__hero-image-wrapper {
    margin-bottom: 15px;
  }

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

  .page-cockfighting__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

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

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

  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 30px;
  }

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

  .page-cockfighting__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

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

  .page-cockfighting__cta-section .page-cockfighting__container {
    flex-direction: column;
    gap: 30px;
  }
}

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

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

  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-cockfighting__hero-description {
    font-size: 0.95rem;
  }

  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__features-section,
  .page-cockfighting__faq-section {
    padding: 30px 0;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 25px;
  }

  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-cockfighting__feature-title {
    font-size: 1.3rem;
  }

  .page-cockfighting__cta-section {
    padding: 40px 0;
  }

  .page-cockfighting__cta-title {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  }

  .page-cockfighting__cta-description {
    font-size: 0.9rem;
  }

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

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

  .page-cockfighting__faq-answer {
    font-size: 0.9rem;
  }

  /* Ensure all content area images are responsive */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
  .page-cockfighting__feature-image {
    height: auto; /* Allow height to adjust naturally */
  }
}

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

  .page-cockfighting__main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-cockfighting__hero-description {
    font-size: 0.85rem;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .page-cockfighting__cta-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }
}