/* style/strategy-guides-low-volatility.css */
.page-strategy-guides-low-volatility {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-strategy-guides-low-volatility__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient for depth */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-strategy-guides-low-volatility__hero-content {
  max-width: 900px;
  z-index: 10;
}

.page-strategy-guides-low-volatility__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-strategy-guides-low-volatility__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-strategy-guides-low-volatility__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-strategy-guides-low-volatility__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.1);
}

.page-strategy-guides-low-volatility__section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-strategy-guides-low-volatility__section:nth-of-type(even) {
  background-color: #e9e9e9;
}

.page-strategy-guides-low-volatility__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-strategy-guides-low-volatility__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-strategy-guides-low-volatility__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-strategy-guides-low-volatility__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-strategy-guides-low-volatility__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-strategy-guides-low-volatility__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-strategy-guides-low-volatility__cta-button--secondary:hover {
  background-color: #001a33;
  color: #fff;
  border-color: #fff;
}

.page-strategy-guides-low-volatility__introduction p,
.page-strategy-guides-low-volatility__responsible-gaming p {
  font-size: 1.1em;
  margin-bottom: 1em;
  text-align: justify;
}

.page-strategy-guides-low-volatility__introduction strong {
  color: #003366;
}

.page-strategy-guides-low-volatility__advantages .page-strategy-guides-low-volatility__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-strategy-guides-low-volatility__advantages .page-strategy-guides-low-volatility__list li {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #003366;
  position: relative;
  padding-left: 45px;
  text-align: justify;
}

.page-strategy-guides-low-volatility__advantages .page-strategy-guides-low-volatility__list li::before {
  content: '✔';
  color: #FFCC00;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 15px;
}

.page-strategy-guides-low-volatility__image-full {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-strategy-guides-low-volatility__strategies {
  background-color: #f0f0f0;
}

.page-strategy-guides-low-volatility__strategy-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-strategy-guides-low-volatility__strategy-card:nth-child(even) {
  flex-direction: column-reverse;
}

.page-strategy-guides-low-volatility__strategy-title {
  color: #003366;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-strategy-guides-low-volatility__strategy-card p {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-strategy-guides-low-volatility__strategy-image {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-strategy-guides-low-volatility__faq {
  background-color: #fff;
}

.page-strategy-guides-low-volatility__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-strategy-guides-low-volatility__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-strategy-guides-low-volatility__faq-answer {
  font-size: 1.05em;
  color: #666;
  text-align: justify;
}

.page-strategy-guides-low-volatility__cta-final {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-strategy-guides-low-volatility__cta-final .page-strategy-guides-low-volatility__section-title {
  color: #fff;
}

.page-strategy-guides-low-volatility__cta-final .page-strategy-guides-low-volatility__section-title::after {
  background-color: #fff;
}

.page-strategy-guides-low-volatility__cta-final p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-strategy-guides-low-volatility__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-strategy-guides-low-volatility__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-strategy-guides-low-volatility__hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-strategy-guides-low-volatility__hero-image-wrapper {
    position: relative;
    flex: 1;
    opacity: 1;
    filter: none;
    transform: none;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-strategy-guides-low-volatility__hero-image {
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
  }

  .page-strategy-guides-low-volatility__strategy-card {
    flex-direction: row;
    text-align: left;
    gap: 30px;
  }

  .page-strategy-guides-low-volatility__strategy-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-strategy-guides-low-volatility__strategy-card p {
    flex: 2;
    margin-bottom: 0;
  }

  .page-strategy-guides-low-volatility__strategy-image {
    flex: 1;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .page-strategy-guides-low-volatility__hero-title {
    font-size: 2.2em;
  }

  .page-strategy-guides-low-volatility__hero-subtitle {
    font-size: 1.1em;
  }

  .page-strategy-guides-low-volatility__section-title {
    font-size: 1.8em;
  }

  .page-strategy-guides-low-volatility__advantages .page-strategy-guides-low-volatility__list li {
    font-size: 1em;
  }

  .page-strategy-guides-low-volatility__strategy-title {
    font-size: 1.5em;
  }

  .page-strategy-guides-low-volatility__faq-question {
    font-size: 1.1em;
  }

  .page-strategy-guides-low-volatility__cta-final p {
    font-size: 1.1em;
  }
}