.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

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

.page-cockfighting .text-white {
  color: #ffffff;
}

.page-cockfighting .bg-light-grey {
  background-color: #f8f8f8;
}

.page-cockfighting .bg-dark-red {
  background-color: #8B0000;
}

.page-cockfighting .section-title {
  font-size: 36px;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-cockfighting .section-title.text-white {
  color: #FFD700;
}

.page-cockfighting .section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary Color */
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-cockfighting .cta-button:hover {
  background: #E6C200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .button-primary {
  display: inline-block;
  padding: 10px 25px;
  background: #8B0000; /* Secondary Color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting .button-primary:hover {
  background: #6A0000;
  transform: translateY(-1px);
}

.page-cockfighting .button-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700; /* Primary Color */
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting .button-secondary:hover {
  background: #E6C200;
  transform: translateY(-1px);
}

.page-cockfighting .button-small {
  display: inline-block;
  padding: 8px 15px;
  background: #FFD700;
  color: #333333;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-cockfighting .button-small:hover {
  background: #E6C200;
}

/* Hero Section */
.page-cockfighting .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f0f0f0; /* Fallback */
}

.page-cockfighting .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-cockfighting .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .hero-title {
  font-size: 48px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.page-cockfighting .hero-subtitle {
  font-size: 22px;
  color: #555555;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-cockfighting section {
  padding: 80px 0;
}

.page-cockfighting .section-intro p {
  margin-bottom: 20px;
  font-size: 17px;
  text-align: justify;
}

.page-cockfighting .section-intro .button-secondary {
  margin-top: 20px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.page-cockfighting .grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting .grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Type Card */
.page-cockfighting .type-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting .type-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .type-card h3 {
  font-size: 24px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting .type-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting .type-card a {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting .type-card a:hover {
  background: #E6C200;
}

/* Guide Steps */
.page-cockfighting .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting .step-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px; /* Ensure consistent height */
}

.page-cockfighting .step-item .step-number {
  width: 50px;
  height: 50px;
  background: #8B0000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .step-item h3 {
  font-size: 22px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting .step-item p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow paragraph to take available space */
  text-align: justify;
}

.page-cockfighting .step-item .button-primary {
  margin-top: auto; /* Push button to the bottom */
}

/* Rules Section */
.page-cockfighting .section-rules .content-block {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .section-rules h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting .section-rules ul {
  list-style: disc;
  margin-left: 20px;
  color: #ffffff;
}

.page-cockfighting .section-rules ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-cockfighting .section-rules p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Tips Section */
.page-cockfighting .section-tips .tips-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-cockfighting .section-tips .tip-item {
  background: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-cockfighting .section-tips .tip-item h4 {
  font-size: 20px;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-cockfighting .section-tips .tip-item p {
  font-size: 16px;
  color: #555555;
  text-align: justify;
}

.page-cockfighting .section-tips .tips-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .section-tips .single-tip {
  margin-top: 30px;
  text-align: center;
  border-left: none;
  background: #f8f8f8;
}

.page-cockfighting .section-tips .single-tip h4 {
  color: #8B0000;
}

/* Promotions Section */
.page-cockfighting .section-promotions .promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .section-promotions .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .section-promotions .promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .section-promotions .promo-card h3 {
  font-size: 24px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting .section-promotions .promo-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting .section-promotions .grid-2-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Why Choose Section */
.page-cockfighting .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting .feature-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting .feature-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting .feature-item h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  background-color: #8B0000;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
}

.page-cockfighting .feature-item p {
  font-size: 16px;
  color: #555555;
  text-align: justify;
}

/* FAQ Section */
.page-cockfighting .faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.page-cockfighting .faq-item {
  margin-bottom: 15px;
}

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .faq-question:hover {
  background: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .faq-question h3 {
  font-size: 18px;
  color: #333333;
  margin: 0;
  font-weight: bold;
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000;
  transition: transform 0.3s ease;
}

.page-cockfighting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-cockfighting .faq-answer p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
  text-align: justify;
}

/* Bottom CTA Section */
.page-cockfighting .section-cta-bottom {
  padding: 60px 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-title {
    font-size: 42px;
  }
  .page-cockfighting .hero-subtitle {
    font-size: 20px;
  }
  .page-cockfighting .section-title {
    font-size: 30px;
  }
  .page-cockfighting .section-description {
    font-size: 16px;
  }
  .page-cockfighting .grid-3-cols, .page-cockfighting .grid-2-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-cockfighting .promo-card h3, .page-cockfighting .type-card h3, .page-cockfighting .step-item h3, .page-cockfighting .feature-item h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-content {
    padding: 20px;
  }
  .page-cockfighting .hero-title {
    font-size: 32px;
  }
  .page-cockfighting .hero-subtitle {
    font-size: 18px;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-cockfighting section {
    padding: 60px 0;
  }
  .page-cockfighting .section-title {
    font-size: 26px;
  }
  .page-cockfighting .section-description {
    font-size: 15px;
  }
  .page-cockfighting .grid-3-cols, .page-cockfighting .grid-2-cols, .page-cockfighting .guide-steps, .page-cockfighting .features-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .type-card, .page-cockfighting .promo-card, .page-cockfighting .step-item, .page-cockfighting .feature-item {
    padding: 20px;
  }
  .page-cockfighting .type-card img, .page-cockfighting .promo-card img {
    height: 180px;
  }
  .page-cockfighting .section-rules .content-block {
    padding: 20px;
  }
  .page-cockfighting .section-tips .tips-image {
    order: -1; /* Image first on mobile */
    margin-bottom: 30px;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 16px;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-title {
    font-size: 28px;
  }
  .page-cockfighting .hero-subtitle {
    font-size: 16px;
  }
  .page-cockfighting .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-cockfighting .section-title {
    font-size: 22px;
  }
  .page-cockfighting .section-description {
    font-size: 14px;
  }
  .page-cockfighting .type-card h3, .page-cockfighting .step-item h3, .page-cockfighting .promo-card h3, .page-cockfighting .feature-item h3 {
    font-size: 18px;
  }
  .page-cockfighting .type-card p, .page-cockfighting .step-item p, .page-cockfighting .promo-card p, .page-cockfighting .feature-item p, .page-cockfighting .faq-answer p {
    font-size: 14px;
  }
}