.page-betting-guides-fund-management-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #2C3E50; /* Dark blue for primary text */
  background-color: #f9f9f9;
}

.page-betting-guides-fund-management-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-guides-fund-management-tips__hero {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #2C3E50 100%); /* Gold to Orange to Dark Blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-guides-fund-management-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #2C3E50; /* Dark blue for contrast on gold/orange */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-guides-fund-management-tips__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #2C3E50; /* Dark blue for contrast */
}

.page-betting-guides-fund-management-tips__cta-button {
  display: inline-block;
  background-color: #2C3E50; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-betting-guides-fund-management-tips__cta-button:hover {
  background-color: #FFD700; /* Gold hover */
  color: #2C3E50; /* Dark blue text on hover */
  transform: translateY(-3px);
  border-color: #2C3E50;
}

.page-betting-guides-fund-management-tips__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-betting-guides-fund-management-tips__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-betting-guides-fund-management-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-betting-guides-fund-management-tips__section:last-of-type {
  border-bottom: none;
}

.page-betting-guides-fund-management-tips__section-title {
  font-size: 2.5em;
  color: #2C3E50; /* Dark blue for main section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-betting-guides-fund-management-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-betting-guides-fund-management-tips__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subsections */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #2C3E50; /* Dark blue accent */
  padding-left: 15px;
}

.page-betting-guides-fund-management-tips__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.page-betting-guides-fund-management-tips__section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333;
}

.page-betting-guides-fund-management-tips__section ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-betting-guides-fund-management-tips__section ul li::marker {
  color: #FFD700; /* Gold bullet points */
}

.page-betting-guides-fund-management-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-guides-fund-management-tips__text-link {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-betting-guides-fund-management-tips__text-link:hover {
  color: #2C3E50; /* Dark blue on hover */
  text-decoration: underline;
}

.page-betting-guides-fund-management-tips__conclusion {
  text-align: center;
  background-color: #2C3E50; /* Dark blue background for conclusion */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-betting-guides-fund-management-tips__conclusion .page-betting-guides-fund-management-tips__section-title {
  color: #FFD700; /* Gold title on dark blue */
}

.page-betting-guides-fund-management-tips__conclusion .page-betting-guides-fund-management-tips__section-title::after {
  background-color: #FFD700;
}

.page-betting-guides-fund-management-tips__conclusion p {
  color: #E0E0E0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guides-fund-management-tips__conclusion .page-betting-guides-fund-management-tips__text-link {
  color: #FFD700;
}

.page-betting-guides-fund-management-tips__conclusion .page-betting-guides-fund-management-tips__text-link:hover {
  color: #FFA500;
}

.highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

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

  .page-betting-guides-fund-management-tips__hero-subtitle {
    font-size: 1.2em;
  }

  .page-betting-guides-fund-management-tips__section-title {
    font-size: 2em;
  }

  .page-betting-guides-fund-management-tips__subsection-title {
    font-size: 1.5em;
  }

  .page-betting-guides-fund-management-tips__section {
    padding: 40px 0;
  }

  .page-betting-guides-fund-management-tips__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-betting-guides-fund-management-tips__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

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

  .page-betting-guides-fund-management-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-guides-fund-management-tips__section-title {
    font-size: 1.8em;
  }

  .page-betting-guides-fund-management-tips__subsection-title {
    font-size: 1.3em;
  }

  .page-betting-guides-fund-management-tips__section p,
  .page-betting-guides-fund-management-tips__section ul li {
    font-size: 1em;
  }

  .page-betting-guides-fund-management-tips__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .page-betting-guides-fund-management-tips__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}