/* style/cockfighting-betting-faq.css */
.page-cockfighting-betting-faq {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-cockfighting-betting-faq__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-betting-faq__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-cockfighting-betting-faq__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* High contrast for title */
}

.page-cockfighting-betting-faq__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-cockfighting-betting-faq__hero-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-faq__hero-btn:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-cockfighting-betting-faq__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
  z-index: 1;
}

.page-cockfighting-betting-faq__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-faq__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-cockfighting-betting-faq__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-betting-faq__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-betting-faq__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-betting-faq__accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-cockfighting-betting-faq__accordion-item {
  border-bottom: 1px solid #eee;
}

.page-cockfighting-betting-faq__accordion-item:last-child {
  border-bottom: none;
}

.page-cockfighting-betting-faq__accordion-header {
  background-color: #f0f8ff; /* Light blue background */
  color: #0056b3; /* Darker blue for text */
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting-betting-faq__accordion-header:hover {
  background-color: #e6f2ff;
}

.page-cockfighting-betting-faq__accordion-header h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0056b3;
}

.page-cockfighting-betting-faq__accordion-icon {
  font-size: 1.5em;
  transition: transform 0.3s ease;
  color: #007bff;
}

.page-cockfighting-betting-faq__accordion-header.active .page-cockfighting-betting-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-cockfighting-betting-faq__accordion-content {
  background-color: #ffffff;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting-betting-faq__accordion-content.active {
  max-height: 1000px; /* Adjust as needed for content height */
  padding: 20px 25px;
}

.page-cockfighting-betting-faq__accordion-content h4 {
  font-size: 1.1em;
  color: #007bff;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-cockfighting-betting-faq__accordion-content p {
  font-size: 1em;
  color: #444;
  margin-bottom: 15px;
}

.page-cockfighting-betting-faq__accordion-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting-betting-faq__accordion-content a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-cockfighting-betting-faq__cta-link {
  display: inline-block;
  margin-top: 10px;
  background-color: #ffc107;
  color: #0056b3;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-cockfighting-betting-faq__cta-link:hover {
  background-color: #e0a800;
  color: #003f80;
}

.page-cockfighting-betting-faq__conclusion-cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-betting-faq__conclusion-title {
  font-size: 2em;
  color: #ffc107;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-betting-faq__conclusion-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-cockfighting-betting-faq__conclusion-description a {
  color: #ffc107;
  text-decoration: underline;
}

.page-cockfighting-betting-faq__conclusion-description a:hover {
  color: #e0a800;
}

.page-cockfighting-betting-faq__conclusion-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-faq__conclusion-btn:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting-betting-faq__hero {
    padding: 60px 15px;
  }

  .page-cockfighting-betting-faq__hero-title {
    font-size: 2.2em;
  }

  .page-cockfighting-betting-faq__hero-description {
    font-size: 1em;
  }

  .page-cockfighting-betting-faq__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting-betting-faq__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-betting-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-cockfighting-betting-faq__accordion-header h3 {
    font-size: 1.1em;
  }

  .page-cockfighting-betting-faq__accordion-content {
    padding: 15px 20px;
  }

  .page-cockfighting-betting-faq__accordion-content h4 {
    font-size: 1em;
  }

  .page-cockfighting-betting-faq__conclusion-title {
    font-size: 1.8em;
  }

  .page-cockfighting-betting-faq__conclusion-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-faq__hero-title {
    font-size: 1.8em;
  }

  .page-cockfighting-betting-faq__section-title {
    font-size: 1.5em;
  }

  .page-cockfighting-betting-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-cockfighting-betting-faq__accordion-header h3 {
    font-size: 1em;
  }

  .page-cockfighting-betting-faq__accordion-content {
    padding: 12px 15px;
  }

  .page-cockfighting-betting-faq__conclusion-title {
    font-size: 1.5em;
  }

  .page-cockfighting-betting-faq__conclusion-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}