/* style/betting-guides-football-strategy.css */
.page-betting-guides-football-strategy {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-betting-guides-football-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-guides-football-strategy__hero-section {
  background: linear-gradient(135deg, #004AAD 0%, #0a6bb8 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-betting-guides-football-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-guides-football-strategy__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-betting-guides-football-strategy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #004AAD; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-betting-guides-football-strategy__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-betting-guides-football-strategy__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-betting-guides-football-strategy__section-title {
  font-size: 2.5em;
  color: #004AAD; /* Dark blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-guides-football-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-betting-guides-football-strategy__sub-title {
  font-size: 1.8em;
  color: #004AAD; /* Dark blue for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700; /* Gold accent bar */
  padding-left: 15px;
}

.page-betting-guides-football-strategy__content-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-betting-guides-football-strategy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-betting-guides-football-strategy__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-betting-guides-football-strategy__list li strong {
  color: #004AAD;
}

.page-betting-guides-football-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guides-football-strategy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-betting-guides-football-strategy__button--primary {
  background-color: #004AAD; /* Dark blue button */
  color: #fff;
  border-color: #004AAD;
}

.page-betting-guides-football-strategy__button--primary:hover {
  background-color: #0a6bb8; /* Lighter blue on hover */
  border-color: #0a6bb8;
}

.page-betting-guides-football-strategy__button--secondary {
  background-color: #FFD700; /* Gold button */
  color: #004AAD; /* Dark blue text */
  border-color: #FFD700;
}

.page-betting-guides-football-strategy__button--secondary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-betting-guides-football-strategy__hero-title {
    font-size: 2.5em;
  }

  .page-betting-guides-football-strategy__hero-description,
  .page-betting-guides-football-strategy__content-section p,
  .page-betting-guides-football-strategy__list li {
    font-size: 1em;
  }

  .page-betting-guides-football-strategy__section-title {
    font-size: 2em;
  }

  .page-betting-guides-football-strategy__sub-title {
    font-size: 1.5em;
  }

  .page-betting-guides-football-strategy__cta-button,
  .page-betting-guides-football-strategy__button {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-betting-guides-football-strategy__hero-title {
    font-size: 2em;
  }

  .page-betting-guides-football-strategy__section-title {
    font-size: 1.8em;
  }

  .page-betting-guides-football-strategy__sub-title {
    font-size: 1.3em;
  }

  .page-betting-guides-football-strategy__hero-section {
    padding: 60px 0;
  }

  .page-betting-guides-football-strategy__content-section {
    padding: 40px 0;
  }
}