.page-betting-tools {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-betting-tools__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-betting-tools__hero {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-tools__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,blue_yellow]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-betting-tools__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.page-betting-tools__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-betting-tools__section {
  padding: 60px 0;
}

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

.page-betting-tools__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-tools__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-betting-tools__section-description {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-tools__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-betting-tools__btn--primary {
  background-color: #ffc107;
  color: #0056b3; /* Darker text for contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-betting-tools__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-betting-tools__btn--secondary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-betting-tools__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-betting-tools__btn--download {
  background-color: #28a745;
  color: #fff;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  margin-top: 20px;
}

.page-betting-tools__btn--download:hover {
  background-color: #218838;
  transform: translateY(-3px);
}

.page-betting-tools__intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-betting-tools__intro-content .page-betting-tools__text-content {
  flex: 2;
  min-width: 300px;
}

.page-betting-tools__intro-content .page-betting-tools__image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-betting-tools__intro-content .page-betting-tools__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.page-betting-tools__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-betting-tools__benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-tools__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.page-betting-tools__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 123, 255, 0.3));
}

.page-betting-tools__benefit-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-betting-tools__tool-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-betting-tools__tool-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-tools__tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.page-betting-tools__tool-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-betting-tools__tool-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-betting-tools__tool-card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-betting-tools__tool-card-title a {
  color: #007bff;
  text-decoration: none;
}

.page-betting-tools__tool-card-title a:hover {
  text-decoration: underline;
}

.page-betting-tools__tool-card-description {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-betting-tools__why-goal123-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.page-betting-tools__why-goal123-content .page-betting-tools__text-content {
  flex: 2;
  min-width: 300px;
}

.page-betting-tools__why-goal123-content .page-betting-tools__image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-betting-tools__why-goal123-content .page-betting-tools__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.page-betting-tools__why-goal123-content h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-betting-tools__tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-betting-tools__tip-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-tools__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.page-betting-tools__tip-title {
  font-size: 1.5em;
  color: #ffc107; /* Use secondary color for tips */
  margin-bottom: 15px;
}

.page-betting-tools__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-betting-tools__faq-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.page-betting-tools__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-betting-tools__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-betting-tools__faq-item.active .page-betting-tools__faq-question::after {
  transform: rotate(45deg);
}

.page-betting-tools__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-betting-tools__faq-item.active .page-betting-tools__faq-answer {
  display: block;
}

.page-betting-tools__faq-answer a {
  color: #007bff;
  text-decoration: none;
}

.page-betting-tools__faq-answer a:hover {
  text-decoration: underline;
}

.page-betting-tools__cta-final {
  background: linear-gradient(90deg, #007bff, #ffc107);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-betting-tools__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-betting-tools__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-tools__cta-buttons .page-betting-tools__btn {
  margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-betting-tools__hero-title {
    font-size: 2.8em;
  }
  .page-betting-tools__hero-subtitle {
    font-size: 1.2em;
  }
  .page-betting-tools__section-title {
    font-size: 2em;
  }
  .page-betting-tools__intro-content,
  .page-betting-tools__why-goal123-content {
    flex-direction: column;
  }
  .page-betting-tools__intro-content .page-betting-tools__text-content,
  .page-betting-tools__intro-content .page-betting-tools__image-wrapper,
  .page-betting-tools__why-goal123-content .page-betting-tools__text-content,
  .page-betting-tools__why-goal123-content .page-betting-tools__image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-betting-tools__hero {
    padding: 80px 0;
  }
  .page-betting-tools__hero-title {
    font-size: 2.2em;
  }
  .page-betting-tools__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-tools__section {
    padding: 40px 0;
  }
  .page-betting-tools__section-title {
    font-size: 1.8em;
  }
  .page-betting-tools__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-tools__tool-card-grid,
  .page-betting-tools__benefit-grid,
  .page-betting-tools__tip-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-tools__cta-title {
    font-size: 2em;
  }
  .page-betting-tools__cta-text {
    font-size: 1.1em;
  }
  .page-betting-tools__cta-buttons .page-betting-tools__btn {
    margin: 10px 0;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-betting-tools__hero-title {
    font-size: 1.8em;
  }
  .page-betting-tools__hero-subtitle {
    font-size: 1em;
  }
  .page-betting-tools__section-title {
    font-size: 1.6em;
  }
  .page-betting-tools__tool-card-title {
    font-size: 1.5em;
  }
  .page-betting-tools__cta-title {
    font-size: 1.8em;
  }
}