.page-blog-efficient-betting-guide {
  background-color: #F5F7FA;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small padding to prevent content from touching header */
}

.page-blog-efficient-betting-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #100224; /* Dark background for hero */
  color: #FFFFFF;
  margin-bottom: 30px;
}

.page-blog-efficient-betting-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-efficient-betting-guide__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-efficient-betting-guide__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure content block takes full width within max-width */
}

.page-blog-efficient-betting-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FF5A4F;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-efficient-betting-guide__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-efficient-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-blog-efficient-betting-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.6);
}

.page-blog-efficient-betting-guide__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-blog-efficient-betting-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-blog-efficient-betting-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF5A4F, #E53935);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-efficient-betting-guide__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-blog-efficient-betting-guide__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-blog-efficient-betting-guide__text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-blog-efficient-betting-guide__section-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-efficient-betting-guide__section-image--full-width {
  max-width: 100%;
  margin-top: 40px;
}

.page-blog-efficient-betting-guide__text-content p {
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-efficient-betting-guide__text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-efficient-betting-guide__text-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333333;
}

.page-blog-efficient-betting-guide__text-content ul li::before {
  content: '✓';
  color: #E53935;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-efficient-betting-guide__inline-cta {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-blog-efficient-betting-guide__inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
}

.page-blog-efficient-betting-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-efficient-betting-guide__step-card {
  background-color: #F5F7FA;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-efficient-betting-guide__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-efficient-betting-guide__step-title {
  font-size: 1.5rem;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-efficient-betting-guide__step-card p {
  color: #333333;
  margin-bottom: 20px;
}

.page-blog-efficient-betting-guide__step-link {
  display: inline-block;
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FF5A4F;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-blog-efficient-betting-guide__step-link:hover {
  color: #FF5A4F;
  border-color: #E53935;
}

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

.page-blog-efficient-betting-guide__promo-card {
  background-color: #F5F7FA;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-efficient-betting-guide__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-efficient-betting-guide__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-blog-efficient-betting-guide__promo-card h3 {
  font-size: 1.3rem;
  color: #E53935;
  padding: 15px 20px 10px;
}

.page-blog-efficient-betting-guide__promo-card p {
  color: #333333;
  padding: 0 20px 20px;
}

.page-blog-efficient-betting-guide__promo-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-blog-efficient-betting-guide__promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
}

.page-blog-efficient-betting-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-efficient-betting-guide__faq-item {
  background-color: #F5F7FA;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-blog-efficient-betting-guide__faq-question {
  font-size: 1.2rem;
  color: #333333;
  padding: 15px 20px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: color 0.3s ease;
}

.page-blog-efficient-betting-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #E53935;
  transition: transform 0.3s ease;
}

.page-blog-efficient-betting-guide__faq-item.active .page-blog-efficient-betting-guide__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-blog-efficient-betting-guide__faq-answer {
  padding: 0 20px 15px;
  color: #555555;
  display: none;
}

.page-blog-efficient-betting-guide__faq-item.active .page-blog-efficient-betting-guide__faq-answer {
  display: block;
}

.page-blog-efficient-betting-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-efficient-betting-guide__faq-link {
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-efficient-betting-guide__faq-link:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-blog-efficient-betting-guide__content-wrapper {
    flex-direction: column;
  }
  .page-blog-efficient-betting-guide__content-wrapper--reversed {
    flex-direction: column;
  }
  .page-blog-efficient-betting-guide__text-content,
  .page-blog-efficient-betting-guide__section-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-efficient-betting-guide__hero-section {
    padding: 30px 15px;
  }
  .page-blog-efficient-betting-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-efficient-betting-guide__description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-blog-efficient-betting-guide__section {
    padding: 40px 15px;
  }
  .page-blog-efficient-betting-guide__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .page-blog-efficient-betting-guide__steps-grid,
  .page-blog-efficient-betting-guide__promo-cards {
    grid-template-columns: 1fr;
  }
  /* Mobile content image overflow prevention */
  .page-blog-efficient-betting-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-efficient-betting-guide__hero-image {
    width: 100%;
    height: auto;
  }
  .page-blog-efficient-betting-guide__section-image {
    width: 100%;
    height: auto;
  }
  .page-blog-efficient-betting-guide__promo-image {
    width: 100%;
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-blog-efficient-betting-guide__text-content ul li {
    padding-left: 20px;
  }
  .page-blog-efficient-betting-guide__text-content ul li::before {
    font-size: 0.9em;
  }
}