/* style/resources-sic-bo-advanced-strategy.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-resources-sic-bo-advanced-strategy {
  color: #ffffff; /* Light text for dark body background */
  background-color: #121212; /* Inherited from body or set explicitly for consistency */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-resources-sic-bo-advanced-strategy a {
  color: #017439; /* Brand color for links */
  text-decoration: none;
}

.page-resources-sic-bo-advanced-strategy a:hover {
  text-decoration: underline;
}

/* Fixed Header Offset */
.page-resources-sic-bo-advanced-strategy__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Container for content sections */
.page-resources-sic-bo-advanced-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section Titles */
.page-resources-sic-bo-advanced-strategy__section-title {
  font-size: 2.5em;
  color: #ffffff; /* White text for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-sic-bo-advanced-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439; /* Brand color accent */
  border-radius: 2px;
}

/* Hero Section */
.page-resources-sic-bo-advanced-strategy__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
  overflow: hidden;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-resources-sic-bo-advanced-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to let content stand out */
}

.page-resources-sic-bo-advanced-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-resources-sic-bo-advanced-strategy__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-sic-bo-advanced-strategy__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Call to Action Buttons */
.page-resources-sic-bo-advanced-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-sic-bo-advanced-strategy__btn-primary {
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-resources-sic-bo-advanced-strategy__btn-primary:hover {
  background-color: #005a2e; /* Darker shade on hover */
  transform: translateY(-2px);
}

.page-resources-sic-bo-advanced-strategy__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Brand color text on white */
  border: 2px solid #017439;
  margin-left: 20px; /* Space between buttons */
}

.page-resources-sic-bo-advanced-strategy__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Content Sections */
.page-resources-sic-bo-advanced-strategy__intro-section,
.page-resources-sic-bo-advanced-strategy__basic-concepts-section,
.page-resources-sic-bo-advanced-strategy__bankroll-section,
.page-resources-sic-bo-advanced-strategy__mistakes-section,
.page-resources-sic-bo-advanced-strategy__faq-section,
.page-resources-sic-bo-advanced-strategy__cta-section {
  padding: 60px 0;
}

.page-resources-sic-bo-advanced-strategy__dark-bg {
  background-color: #0d0d0d; /* Slightly different dark background */
  color: #ffffff;
}

.page-resources-sic-bo-advanced-strategy__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-resources-sic-bo-advanced-strategy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-sic-bo-advanced-strategy__list-item {
  margin-bottom: 10px;
}

.page-resources-sic-bo-advanced-strategy__image-content {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Strategy Cards */
.page-resources-sic-bo-advanced-strategy__strategies-section {
  background-color: #121212; /* Main body background for consistency */
  padding-bottom: 80px;
}

.page-resources-sic-bo-advanced-strategy__strategy-card {
  background-color: #1a1a1a; /* Darker card background */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}