.page-resources-how-to-choose-reliable-cockfighting-platform {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #ffffff); /* Ensure body background is light */
}

.page-resources-how-to-choose-reliable-cockfighting-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-how-to-choose-reliable-cockfighting-platform__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #26A9E0 0%, #FFFFFF 100%);
  color: #ffffff; /* Text color for brand primary background */
  overflow: hidden;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.8;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  margin-top: 30px;
}

/* General Section Styles */
.page-resources-how-to-choose-reliable-cockfighting-platform__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #26A9E0; /* Brand primary color for titles */
}

.page-resources-how-to-choose-reliable-cockfighting-platform__section-text {
  font-size: 17px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Card Grid Layout */
.page-resources-how-to-choose-reliable-cockfighting-platform__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__grid--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-resources-how-to-choose-reliable-cockfighting-platform__card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__card-text {
  font-size: 16px;
  line-height: 1.7;
}

/* List Styles */
.page-resources-how-to-choose-reliable-cockfighting-platform__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__list-item {
  background: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  color: #333333;
  border-left: 5px solid #26A9E0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__list-item strong {
  color: #26A9E0;
}

/* Steps Section */
.page-resources-how-to-choose-reliable-cockfighting-platform__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333333;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__step-number {
  width: 50px;
  height: 50px;
  background: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__step-text {
  font-size: 16px;
  line-height: 1.7;
}

/* CTA Buttons */
.page-resources-how-to-choose-reliable-cockfighting-platform__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure responsive button width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-resources-how-to-choose-reliable-cockfighting-platform__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__cta-group {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-resources-how-to-choose-reliable-cockfighting-platform__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #333333;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-cockfighting-platform__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-question:active {
  background: #eeeeee;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #26A9E0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-cockfighting-platform__faq-toggle {
  color: #333;
  transform: rotate(45deg);
}

/* Color Contrast Classes */
.page-resources-how-to-choose-reliable-cockfighting-platform__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__light-bg {
  background: #ffffff;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-reliable-cockfighting-platform__hero-title {
    font-size: 40px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__section-title {
    font-size: 30px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-reliable-cockfighting-platform__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__hero-title {
    font-size: 32px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__cta-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__section {
    padding: 40px 0;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__section-text {
    font-size: 15px;
    margin: 0 auto 30px auto;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__grid--two-cols {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__card {
    padding: 20px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__card-title {
    font-size: 18px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__card-text {
    font-size: 15px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__list-item {
    font-size: 15px;
    padding: 12px 15px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__step-item {
    padding: 25px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__step-title {
    font-size: 18px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__step-text {
    font-size: 15px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-resources-how-to-choose-reliable-cockfighting-platform__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-resources-how-to-choose-reliable-cockfighting-platform__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-resources-how-to-choose-reliable-cockfighting-platform__faq-answer {
    padding: 0 15px;
  }
  
  .page-resources-how-to-choose-reliable-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-cockfighting-platform__faq-answer {
    padding: 15px !important;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-how-to-choose-reliable-cockfighting-platform__section,
  .page-resources-how-to-choose-reliable-cockfighting-platform__card,
  .page-resources-how-to-choose-reliable-cockfighting-platform__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-reliable-cockfighting-platform__hero-title {
    font-size: 28px;
  }

  .page-resources-how-to-choose-reliable-cockfighting-platform__section-title {
    font-size: 22px;
  }
  .page-resources-how-to-choose-reliable-cockfighting-platform__grid--two-cols {
    grid-template-columns: 1fr;
  }
}