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

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  background-color: var(--background, #F4F7FB);
  position: relative;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image wrapper */
  margin-bottom: 20px;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px 40px;
  max-width: 900px;
}

.page-cockfighting__main-title {
  color: var(--custom-color-1776249996415, #000000);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

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

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

.page-cockfighting__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section {
  padding: 60px 0;
  background-color: var(--background, #F4F7FB);
}

.page-cockfighting__section-title {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-cockfighting__section-text {
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-main, #1F2D3D);
  margin-bottom: 20px;
  text-align: center;
}

.page-cockfighting__introduction-section .page-cockfighting__image {
  margin-top: 30px;
}

.page-cockfighting__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__why-choose-section {
  background-color: var(--card-b-g, #FFFFFF);
  padding: 80px 0;
}

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

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

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__card-title {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-cockfighting__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-main, #1F2D3D);
}

.page-cockfighting__guide-section {
  padding: 80px 0;
}

.page-cockfighting__guide-list {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__guide-item {
  background-color: var(--card-b-g, #FFFFFF);
  border: 1px solid var(--border, #D6E2FF);
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-cockfighting__guide-item::before {
  counter-increment: guide-step;
  content: "Bước " counter(guide-step);
  background-color: var(--primary, #2F6BFF);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9em;
  padding: 8px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-cockfighting__guide-step-title {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-cockfighting__guide-step-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main, #1F2D3D);
}

.page-cockfighting__guide-step-description a {
  color: var(--primary, #2F6BFF);
  text-decoration: none;
  font-weight: 600;
}

.page-cockfighting__guide-step-description a:hover {
  text-decoration: underline;
}

.page-cockfighting__faq-section {
  background-color: var(--background, #F4F7FB);
  padding: 80px 0;
}

.page-cockfighting__faq-item {
  background-color: var(--card-b-g, #FFFFFF);
  border: 1px solid var(--border, #D6E2FF);
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-cockfighting__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main, #1F2D3D);
  display: none;
  margin-top: 15px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  display: block;
}

.page-cockfighting__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    padding: 0 15px 30px;
  }

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

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

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

  .page-cockfighting__section-text {
    font-size: 0.95em;
  }

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

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

  .page-cockfighting__card-title {
    font-size: 1.2em;
  }

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

  .page-cockfighting__guide-step-title {
    font-size: 1.1em;
  }

  .page-cockfighting__guide-step-description {
    font-size: 0.95em;
  }

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

  .page-cockfighting__faq-answer {
    font-size: 0.95em;
  }

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

@media (max-width: 768px) {
  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
  }
}