.page-resources-88-cockfighting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: var(--secondary-color, #FFFFFF);
}

.page-resources-88-cockfighting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-88-cockfighting-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-resources-88-cockfighting-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-88-cockfighting-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-88-cockfighting-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.page-resources-88-cockfighting-guide__cta-button:hover {
  background: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-88-cockfighting-guide__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.page-resources-88-cockfighting-guide__btn-primary:hover {
  background: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-88-cockfighting-guide__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.page-resources-88-cockfighting-guide__btn-secondary:hover {
  background: #f0f0f0;
  color: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-88-cockfighting-guide__full-width-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-88-cockfighting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-88-cockfighting-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

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

.page-resources-88-cockfighting-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-88-cockfighting-guide__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-88-cockfighting-guide__card:hover {
  transform: translateY(-5px);
}

.page-resources-88-cockfighting-guide__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-88-cockfighting-guide__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-88-cockfighting-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element for max-width and margin auto */
  margin-left: auto;
  margin-right: auto;
}

/* Color Contrast Sections */
.page-resources-88-cockfighting-guide__dark-bg {
  background-color: #26A9E0;
  color: #ffffff; /* Light text for dark background */
}

.page-resources-88-cockfighting-guide__dark-bg .page-resources-88-cockfighting-guide__section-title {
  color: #ffffff;
}

.page-resources-88-cockfighting-guide__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-resources-88-cockfighting-guide__light-bg .page-resources-88-cockfighting-guide__section-title {
  color: #26A9E0;
}

/* HERO Section */
.page-resources-88-cockfighting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, #26A9E0, #a0dff0);
  color: #ffffff;
}