.page-resources-sports-betting-tips {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --accent-color: #DC143C;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f7f6;
  --background-dark: #071a2b;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-resources-sports-betting-tips a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-sports-betting-tips a:hover {
  color: var(--accent-color);
}

.page-resources-sports-betting-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-sports-betting-tips__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5a 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-sports-betting-tips__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-resources-sports-betting-tips__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-sports-betting-tips__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-sports-betting-tips__hero a {
  color: var(--secondary-color);
}

.page-resources-sports-betting-tips__hero a:hover {
  color: var(--accent-color);
}

.page-resources-sports-betting-tips__hero-image {
  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.page-resources-sports-betting-tips__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-sports-betting-tips__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-tips__cta-button:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sports-betting-tips__cta-button--secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-sports-betting-tips__cta-button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

.page-resources-sports-betting-tips__section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-resources-sports-betting-tips__section--alt {
  background-color: #e9ecef;
}

.page-resources-sports-betting-tips__section h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-sports-betting-tips__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources-sports-betting-tips__section h3 {
  font-size: 1.8em;
  color: var(--accent-color);
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-resources-sports-betting-tips__section p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources-sports-betting-tips__section ul,
.page-resources-sports-betting-tips__section ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-resources-sports-betting-tips__section ul li,
.page-resources-sports-betting-tips__section ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-sports-betting-tips__section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sports-betting-tips__section--cta {
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-resources-sports-betting-tips__cta-content h2 {
  color: var(--secondary-color);
}

.page-resources-sports-betting-tips__cta-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* FAQ Styles */
.page-resources-sports-betting-tips__faq-list {
  margin-top: 30px;
}

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

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.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-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-sports-betting-tips__hero h1 {
    font-size: 2.5em;
  }
  .page-resources-sports-betting-tips__hero p {
    font-size: 1.1em;
  }
  .page-resources-sports-betting-tips__section h2 {
    font-size: 2em;
  }
  .page-resources-sports-betting-tips__section h3 {
    font-size: 1.6em;
  }
  .page-resources-sports-betting-tips__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-sports-betting-tips__hero {
    padding: 60px 0;
  }
  .page-resources-sports-betting-tips__hero h1 {
    font-size: 2em;
  }
  .page-resources-sports-betting-tips__hero p {
    font-size: 1em;
  }
  .page-resources-sports-betting-tips__section {
    padding: 40px 0;
  }
  .page-resources-sports-betting-tips__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-sports-betting-tips__section h3 {
    font-size: 1.4em;
    margin-top: 25px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-sports-betting-tips__hero h1 {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-tips__hero p {
    font-size: 0.95em;
  }
  .page-resources-sports-betting-tips__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-sports-betting-tips__section h2 {
    font-size: 1.6em;
  }
  .page-resources-sports-betting-tips__section h3 {
    font-size: 1.2em;
  }
  .page-resources-sports-betting-tips__container {
    padding: 0 15px;
  }
}