.page-cockfighting {
  font-family: Arial, sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
}

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

.page-cockfighting__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-cockfighting__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

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

.page-cockfighting__hero-cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-cockfighting__features-section {
  padding: 40px 20px;
  background-color: #F4F7FB;
}

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

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

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
}

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

.page-cockfighting__feature-title {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-bottom: 10px;
}

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

.page-cockfighting__guide-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
}

.page-cockfighting__guide-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-cockfighting__guide-image {
  flex: 1 1 45%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__guide-list {
  flex: 1 1 45%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cockfighting__guide-item {
  background-color: #FFFFFF;
  border-left: 5px solid #2F6BFF;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__guide-item-title {
  font-size: 1.3em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-cockfighting__promotions-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
}

.page-cockfighting__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-cockfighting__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__promo-title {
  font-size: 1.6em;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-cockfighting__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-cockfighting__promo-button {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s ease;
}

.page-cockfighting__promo-button:hover {
  background: #6FA3FF;
}

.page-cockfighting__faq-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
}

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

.page-cockfighting__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
  font-size: 1.2em;
  color: #000000; /* Custom Color_1776249996415 */
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #F4F7FB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #1F2D3D;
}

.page-cockfighting__faq-answer p {
  padding-bottom: 15px;
  line-height: 1.6;
}

.page-cockfighting__cta-section {
  text-align: center;
  padding: 60px 20px 80px;
  background-color: #F4F7FB;
}

.page-cockfighting__cta-description {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #1F2D3D;
}

.page-cockfighting__cta-highlight {
  color: #2F6BFF;
  font-weight: bold;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
  }
  .page-cockfighting__guide-content {
    flex-direction: column;
  }
  .page-cockfighting__guide-image, .page-cockfighting__guide-list {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-title {
    font-size: 2em;
  }
  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-cockfighting__hero-description,
  .page-cockfighting__cta-description {
    font-size: 1em;
  }
  .page-cockfighting__hero-cta-button,
  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting__features-grid,
  .page-cockfighting__promo-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure images do not overflow on mobile */
  .page-cockfighting__hero-image,
  .page-cockfighting__feature-image,
  .page-cockfighting__guide-image {
    max-width: 100%;
    height: auto;
  }
  /* Content area image size constraint */
  .page-cockfighting img {
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
    width: 100%; /* Make sure they scale down */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-cockfighting__guide-item-title {
    font-size: 1.2em;
  }
}