.page-betting-guides-risk-control-strategy {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #1A2530; /* Darker background for contrast */
  line-height: 1.6;
}

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

.page-betting-guides-risk-control-strategy__hero {
  background: linear-gradient(135deg, #FFD700 0%, #2C3E50 100%);
  padding: 80px 0;
  text-align: center;
  color: #2C3E50; /* Dark text on gold background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-betting-guides-risk-control-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-betting-guides-risk-control-strategy__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #2C3E50; /* Dark blue for title */
  line-height: 1.2;
}

.page-betting-guides-risk-control-strategy__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #4A5C70; /* Slightly lighter dark blue for subtitle */
}

.page-betting-guides-risk-control-strategy__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-betting-guides-risk-control-strategy__hero-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-betting-guides-risk-control-strategy__section {
  padding: 60px 0;
}

.page-betting-guides-risk-control-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-betting-guides-risk-control-strategy__intro p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-betting-guides-risk-control-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guides-risk-control-strategy__card {
  background-color: #2C3E50; /* Dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides-risk-control-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-betting-guides-risk-control-strategy__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-betting-guides-risk-control-strategy__card-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-betting-guides-risk-control-strategy__card p {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-betting-guides-risk-control-strategy__strategy-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #2C3E50; /* Dark blue background for strategy items */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-guides-risk-control-strategy__strategy-item:last-of-type {
  margin-bottom: 0;
}

.page-betting-guides-risk-control-strategy__strategy-item.--reverse {
  flex-direction: row-reverse;
}

.page-betting-guides-risk-control-strategy__article-image {
  width: 40%;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  height: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-betting-guides-risk-control-strategy__article-content {
  flex-grow: 1;
}

.page-betting-guides-risk-control-strategy__article-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for article titles */
  margin-bottom: 15px;
}

.page-betting-guides-risk-control-strategy__article-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
  text-align: justify;
}

.page-betting-guides-risk-control-strategy__article-content ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
  color: #E0E0E0;
}

.page-betting-guides-risk-control-strategy__article-content ul li {
  margin-bottom: 8px;
}

.page-betting-guides-risk-control-strategy__warning-signs ul {
  list-style: disc inside;
  padding-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-betting-guides-risk-control-strategy__warning-signs p {
  text-align: justify;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-betting-guides-risk-control-strategy__conclusion p {
  text-align: justify;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-betting-guides-risk-control-strategy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #2C3E50; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-betting-guides-risk-control-strategy__cta-button.--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

.page-betting-guides-risk-control-strategy__secondary-button {
  display: inline-block;
  background-color: #2C3E50; /* Dark blue for secondary button */
  color: #FFD700; /* Gold text on dark blue button */
  padding: 15px 30px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-left: 20px;
}

.page-betting-guides-risk-control-strategy__secondary-button:hover {
  background-color: #FFD700;
  color: #2C3E50;
  transform: translateY(-2px);
}

.page-betting-guides-risk-control-strategy__final-cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-betting-guides-risk-control-strategy .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-guides-risk-control-strategy__hero {
    padding: 60px 0;
    min-height: 350px;
  }

  .page-betting-guides-risk-control-strategy__title {
    font-size: 2.5em;
  }

  .page-betting-guides-risk-control-strategy__subtitle {
    font-size: 1.1em;
  }

  .page-betting-guides-risk-control-strategy__hero-image-wrapper {
    width: 60%;
  }

  .page-betting-guides-risk-control-strategy__section {
    padding: 40px 0;
  }

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

  .page-betting-guides-risk-control-strategy__strategy-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .page-betting-guides-risk-control-strategy__strategy-item.--reverse {
    flex-direction: column;
  }

  .page-betting-guides-risk-control-strategy__article-image {
    width: 80%;
    margin-bottom: 25px;
    height: 200px;
  }

  .page-betting-guides-risk-control-strategy__article-title {
    font-size: 1.5em;
  }

  .page-betting-guides-risk-control-strategy__article-content p,
  .page-betting-guides-risk-control-strategy__article-content ul,
  .page-betting-guides-risk-control-strategy__warning-signs p,
  .page-betting-guides-risk-control-strategy__warning-signs ul,
  .page-betting-guides-risk-control-strategy__conclusion p {
    font-size: 1em;
  }
  
  .page-betting-guides-risk-control-strategy__final-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-betting-guides-risk-control-strategy__secondary-button {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-betting-guides-risk-control-strategy__hero {
    padding: 40px 0;
    min-height: 300px;
  }
  .page-betting-guides-risk-control-strategy__title {
    font-size: 2em;
  }
  .page-betting-guides-risk-control-strategy__subtitle {
    font-size: 1em;
  }
  .page-betting-guides-risk-control-strategy__hero-image-wrapper {
    width: 80%;
  }
  .page-betting-guides-risk-control-strategy__section-title {
    font-size: 1.8em;
  }
  .page-betting-guides-risk-control-strategy__grid {
    grid-template-columns: 1fr;
  }
  .page-betting-guides-risk-control-strategy__card {
    padding: 25px;
  }
  .page-betting-guides-risk-control-strategy__card-icon {
    width: 60px;
    height: 60px;
  }
  .page-betting-guides-risk-control-strategy__card-title {
    font-size: 1.4em;
  }
  .page-betting-guides-risk-control-strategy__article-image {
    width: 90%;
    height: 180px;
  }
  .page-betting-guides-risk-control-strategy__article-title {
    font-size: 1.3em;
  }
  .page-betting-guides-risk-control-strategy__cta-button,
  .page-betting-guides-risk-control-strategy__secondary-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-betting-guides-risk-control-strategy__final-cta-group {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-betting-guides-risk-control-strategy__hero {
    padding: 30px 0;
    min-height: 250px;
  }
  .page-betting-guides-risk-control-strategy__title {
    font-size: 1.8em;
  }
  .page-betting-guides-risk-control-strategy__subtitle {
    font-size: 0.9em;
  }
  .page-betting-guides-risk-control-strategy__hero-image-wrapper {
    width: 100%;
    height: 80%;
    top: auto;
    bottom: -20px;
    left: 0;
    justify-content: center;
    align-items: flex-end;
  }
  .page-betting-guides-risk-control-strategy__hero-image {
    width: auto;
    height: 100%;
  }
  .page-betting-guides-risk-control-strategy__section-title {
    font-size: 1.6em;
  }
  .page-betting-guides-risk-control-strategy__article-image {
    height: 150px;
  }
  .page-betting-guides-risk-control-strategy__cta-button.--small {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}