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

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

.page-cockfighting .text-center {
  text-align: center;
}

.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: linear-gradient(135deg, #0A2463, #2A4880);
  color: #ffffff;
  overflow: hidden;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B048;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.page-cockfighting .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E0B048;
  color: #0A2463;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-cockfighting .cta-button:hover {
  background: #f5c862;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting section {
  padding: 80px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-cockfighting section:last-of-type {
  border-bottom: none;
}

.page-cockfighting .section-intro {
  background-color: #ffffff;
}

.page-cockfighting .section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B048;
  border-radius: 2px;
}

.page-cockfighting .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 60px auto;
  color: #555555;
}

.page-cockfighting .content-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #444444;
}

.page-cockfighting .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .right-aligned-image {
  float: right;
  margin-left: 40px;
  margin-bottom: 20px;
  max-width: 50%;
}

.page-cockfighting .section-types {
  background-color: #f0f4f8;
}

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

.page-cockfighting .card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.page-cockfighting .card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-cockfighting .card-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-cockfighting .card-button {
  display: inline-block;
  padding: 12px 25px;
  background: #0A2463;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting .card-button:hover {
  background: #1a3e7a;
  transform: translateY(-2px);
}

.page-cockfighting .section-benefits {
  background-color: #ffffff;
}

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

.page-cockfighting .benefit-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eeeeee;
}

.page-cockfighting .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-cockfighting .benefit-item h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-cockfighting .benefit-item p {
  font-size: 1em;
  color: #555555;
}

.page-cockfighting .large-button {
  padding: 20px 50px;
  font-size: 1.3em;
  margin-top: 40px;
}

.page-cockfighting .section-guide {
  background-color: #f0f4f8;
}

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

.page-cockfighting .step-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #E0B048;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #E0B048;
  margin-bottom: 20px;
  background-color: #0A2463;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .step-item h3 {
  font-size: 1.7em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-cockfighting .step-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-cockfighting .button-small {
  display: inline-block;
  padding: 10px 20px;
  background: #0A2463;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

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

.page-cockfighting .section-tips {
  background-color: #ffffff;
  overflow: hidden;
}

.page-cockfighting .section-tips .content-block {
  display: block;
}

.page-cockfighting .section-tips ul {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-cockfighting .section-tips ul li {
  margin-bottom: 10px;
  color: #444444;
  font-size: 1.05em;
}

.page-cockfighting .section-safety {
  background-color: #f0f4f8;
}

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

.page-cockfighting .safety-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .safety-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .safety-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-cockfighting .safety-item h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-cockfighting .safety-item p {
  font-size: 1em;
  color: #555555;
}

.page-cockfighting .section-faq {
  background-color: #ffffff;
}

.page-cockfighting .faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-cockfighting .faq-question:hover {
  background: #f5f5f5;
}

.page-cockfighting .faq-question h3 {
  font-size: 1.15em;
  color: #0A2463;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.page-cockfighting .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #E0B048;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.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;
}

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

.page-cockfighting .faq-answer p {
  margin: 0;
  color: #555555;
  font-size: 1em;
}

.page-cockfighting .section-cta-final {
  background: linear-gradient(135deg, #0A2463, #E0B048);
  color: #ffffff;
  padding: 100px 0;
}

.page-cockfighting .section-cta-final .section-title {
  color: #ffffff;
}

.page-cockfighting .section-cta-final .section-title::after {
  background-color: #ffffff;
}

.page-cockfighting .section-cta-final .section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting .section-title {
    font-size: 2.2em;
  }
  .page-cockfighting .right-aligned-image {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting .hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-cockfighting section {
    padding: 60px 0;
  }
  .page-cockfighting .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting .section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-cockfighting .card-grid, .page-cockfighting .benefits-grid, .page-cockfighting .guide-steps, .page-cockfighting .safety-points {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-cockfighting .card-image {
    height: 200px;
  }
  .page-cockfighting .card-title {
    font-size: 1.5em;
  }
  .page-cockfighting .benefit-icon, .page-cockfighting .safety-icon {
    width: 80px;
    height: 80px;
  }
  .page-cockfighting .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2em;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.5em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-cockfighting .content-image {
    margin: 20px auto;
  }
  .page-cockfighting .section-tips .right-aligned-image {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting .hero-description {
    font-size: 0.95em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting .section-title {
    font-size: 1.5em;
  }
  .page-cockfighting .section-description {
    font-size: 0.9em;
  }
  .page-cockfighting .card-title {
    font-size: 1.3em;
  }
  .page-cockfighting .benefit-item h3, .page-cockfighting .safety-item h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .step-item h3 {
    font-size: 1.5em;
  }
}