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

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

.page-cockfighting section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-cockfighting section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-cockfighting h1,
.page-cockfighting h2,
.page-cockfighting h3 {
  color: #007bff; /* Primary color */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 3.2em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-cockfighting h2 {
  font-size: 2.5em;
  margin-top: 40px;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #28a745; /* Secondary color */
  text-align: left;
}

.page-cockfighting p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-cockfighting ul,
.page-cockfighting ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-cockfighting li {
  margin-bottom: 10px;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #007bff; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 25px;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-cockfighting .cta-button:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-cockfighting .secondary-button {
  background: #28a745; /* Secondary color */
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.page-cockfighting .secondary-button:hover {
  background: #218838;
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.page-cockfighting .button-small {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-cockfighting .button-small:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

/* 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: 80px 20px;
  background: linear-gradient(135deg, #007bff, #28a745);
  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;
  z-index: 1;
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.page-cockfighting .hero-content h1 {
  color: #ffffff;
  font-size: 3.5em;
  margin-bottom: 15px;
}

.page-cockfighting .hero-content p {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 30px;
  text-align: center;
}

/* Image Wrapper for content images */
.page-cockfighting .image-wrapper {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Promotions Section */
.page-cockfighting .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting .promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting .promo-card:hover {
  transform: translateY(-8px);
}

.page-cockfighting .promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-cockfighting .promo-card h3 {
  font-size: 1.5em;
  margin: 20px 15px 10px;
  color: #007bff;
}

.page-cockfighting .promo-card p {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 20px;
  text-align: center;
}

/* FAQ Section */
.page-cockfighting .faq-list {
  margin-top: 30px;
}

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
  text-align: left;
}

.page-cockfighting .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: #555555;
}

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

.page-cockfighting .faq-answer p {
  margin: 0;
  text-align: left;
}

/* Blog Section */
.page-cockfighting .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting .blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-cockfighting .blog-card:hover {
  transform: translateY(-8px);
}

.page-cockfighting .blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-cockfighting .blog-card .card-content {
  padding: 20px;
}

.page-cockfighting .blog-card h3 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #007bff;
  text-align: left;
}

.page-cockfighting .blog-card h3 a {
  color: #007bff;
  text-decoration: none;
}

.page-cockfighting .blog-card h3 a:hover {
  text-decoration: underline;
}

.page-cockfighting .blog-card p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  text-align: left;
}

.page-cockfighting .blog-card .read-more {
  display: inline-block;
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting .blog-card .read-more:hover {
  color: #1e7e34;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting h3 {
    font-size: 1.6em;
  }
  .page-cockfighting .hero-content {
    padding: 15px;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .hero-section {
    padding: 60px 15px;
  }
  .page-cockfighting .hero-image img {
    border-radius: 8px;
  }
  .page-cockfighting .hero-content {
    padding: 10px;
    border-radius: 8px;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-cockfighting .cta-button {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-right: 10px;
    margin-top: 20px;
  }
  .page-cockfighting .promo-grid, .page-cockfighting .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .promo-card img, .page-cockfighting .blog-card img {
    height: 200px;
  }
  .page-cockfighting .faq-question {
    padding: 15px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.5em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 15px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting h3 {
    font-size: 1.2em;
  }
  .page-cockfighting .hero-content h1 {
    font-size: 2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 0.9em;
  }
  .page-cockfighting .cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .page-cockfighting .cta-button:last-of-type {
    margin-bottom: 0;
  }
  .page-cockfighting .promo-card h3,
  .page-cockfighting .blog-card h3 {
    font-size: 1.2em;
  }
  .page-cockfighting .promo-card p,
  .page-cockfighting .blog-card p {
    font-size: 0.85em;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1em;
  }
}