.page-resources-sic-bo-tips-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0a0a0a, so text should be light */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

.page-resources-sic-bo-tips-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-sic-bo-tips-strategy__hero-section {
  position: relative;
  background-color: #017439; /* Primary brand color */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.page-resources-sic-bo-tips-strategy__hero-content {
  text-align: center;
  color: #ffffff;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-sic-bo-tips-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-resources-sic-bo-tips-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-sic-bo-tips-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  filter: brightness(0.7); /* Darken image slightly for text contrast */
}

/* Sections */
.page-resources-sic-bo-tips-strategy__introduction-section,
.page-resources-sic-bo-tips-strategy__content-section,
.page-resources-sic-bo-tips-strategy__strategies-section,
.page-resources-sic-bo-tips-strategy__advanced-tips-section,
.page-resources-sic-bo-tips-strategy__common-mistakes-section,
.page-resources-sic-bo-tips-strategy__cta-section,
.page-resources-sic-bo-tips-strategy__faq-section,
.page-resources-sic-bo-tips-strategy__conclusion-section {
  padding: 60px 0;
}

.page-resources-sic-bo-tips-strategy__dark-bg {
  background-color: #0a0a0a; /* Body background */
  color: #ffffff;
}

.page-resources-sic-bo-tips-strategy__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-resources-sic-bo-tips-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff; /* Ensure titles are light on dark backgrounds */
}

.page-resources-sic-bo-tips-strategy__section-title strong {
  color: #017439;
}

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

.page-resources-sic-bo-tips-strategy__list li {
  margin-bottom: 10px;
}

.page-resources-sic-bo-tips-strategy__image-fullwidth {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-sic-bo-tips-strategy__image-center {
  display: block;
  margin: 40px auto;
  max-width: 80%; /* Smaller than fullwidth for central focus */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Strategy Cards */
.page-resources-sic-bo-tips-strategy__strategy-card {
  background-color: #1a1a1a; /* Lighter dark for card background */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-resources-sic-bo-tips-strategy__strategy-title {
  font-size: 1.8em;
  color: #017439; /* Primary brand color for titles */
  margin-bottom: 15px;
}

/* Advanced Tips */
.page-resources-sic-bo-tips-strategy__tip-item {
  background-color: #1a1a1a; /* Lighter dark for tip background */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-resources-sic-bo-tips-strategy__tip-title {
  font-size: 1.8em;
  color: #017439; /* Primary brand color for titles */
  margin-bottom: 15px;
}

/* Call to Action */
.page-resources-sic-bo-tips-strategy__cta-description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 30px;
}

.page-resources-sic-bo-tips-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* Buttons */
.page-resources-sic-bo-tips-strategy__btn-primary,
.page-resources-sic-bo-tips-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-resources-sic-bo-tips-strategy__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-resources-sic-bo-tips-strategy__btn-primary:hover {
  background-color: #e02a2a;
  border-color: #e02a2a;
}

.page-resources-sic-bo-tips-strategy__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-sic-bo-tips-strategy__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

/* FAQ Section */
.page-resources-sic-bo-tips-strategy__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-sic-bo-tips-strategy__faq-item {
  background-color: #1a1a1a; /* Lighter dark for FAQ item background */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-sic-bo-tips-strategy__faq-item details {
  background-color: #1a1a1a;
}

.page-resources-sic-bo-tips-strategy__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: #017439; /* Primary brand color for summary */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sic-bo-tips-strategy__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-resources-sic-bo-tips-strategy__faq-qtext {
  flex-grow: 1;
}

.page-resources-sic-bo-tips-strategy__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-resources-sic-bo-tips-strategy__faq-item[open] .page-resources-sic-bo-tips-strategy__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
}

.page-resources-sic-bo-tips-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: #f0f0f0;
  background-color: #1a1a1a; /* Lighter dark for answer background */
}

.page-resources-sic-bo-tips-strategy__faq-answer p {
  margin-bottom: 10px;
}