/* style/pg66-guides-slot-strategy.css */

:root {
  --page-pg66-guides-slot-strategy-primary-color: #0A2463;
  --page-pg66-guides-slot-strategy-secondary-color: #FFD700;
  --page-pg66-guides-slot-strategy-text-dark: #0A2463;
  --page-pg66-guides-slot-strategy-text-light: #FFFFFF;
  --page-pg66-guides-slot-strategy-background-light: #F0F2F5;
  --page-pg66-guides-slot-strategy-background-dark: #0A2463;
  --page-pg66-guides-slot-strategy-accent-color: #f5db9c; /* Complementary to primary */
}

.page-pg66-guides-slot-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-pg66-guides-slot-strategy-text-dark);
  background-color: var(--page-pg66-guides-slot-strategy-background-light);
}

.page-pg66-guides-slot-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-pg66-guides-slot-strategy__container--center {
  text-align: center;
}

.page-pg66-guides-slot-strategy__hero {
  background: linear-gradient(135deg, var(--page-pg66-guides-slot-strategy-background-dark) 0%, #1A3E8A 100%);
  color: var(--page-pg66-guides-slot-strategy-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-pg66-guides-slot-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-pg66-guides-slot-strategy-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-pg66-guides-slot-strategy__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #E0E0E0;
}

.page-pg66-guides-slot-strategy__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  opacity: 0.3;
  z-index: 0;
}

.page-pg66-guides-slot-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-pg66-guides-slot-strategy__hero > .page-pg66-guides-slot-strategy__container {
  position: relative;
  z-index: 1;
}

.page-pg66-guides-slot-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  border: none;
}

.page-pg66-guides-slot-strategy__btn--primary {
  background-color: var(--page-pg66-guides-slot-strategy-secondary-color);
  color: var(--page-pg66-guides-slot-strategy-text-dark);
}

.page-pg66-guides-slot-strategy__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-pg66-guides-slot-strategy__btn--secondary {
  background-color: transparent;
  color: var(--page-pg66-guides-slot-strategy-secondary-color);
  border: 2px solid var(--page-pg66-guides-slot-strategy-secondary-color);
}

.page-pg66-guides-slot-strategy__btn--secondary:hover {
  background-color: var(--page-pg66-guides-slot-strategy-secondary-color);
  color: var(--page-pg66-guides-slot-strategy-text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-pg66-guides-slot-strategy__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-pg66-guides-slot-strategy__section {
  padding: 60px 0;
}

.page-pg66-guides-slot-strategy__section--intro {
  background-color: var(--page-pg66-guides-slot-strategy-background-light);
}

.page-pg66-guides-slot-strategy__section-title {
  font-size: 2.5em;
  color: var(--page-pg66-guides-slot-strategy-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-pg66-guides-slot-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-pg66-guides-slot-strategy-secondary-color);
  border-radius: 2px;
}

.page-pg66-guides-slot-strategy__section--strategies {
  background-color: #FFFFFF;
}

.page-pg66-guides-slot-strategy__strategy-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid var(--page-pg66-guides-slot-strategy-secondary-color);
}

.page-pg66-guides-slot-strategy__card-title {
  font-size: 1.8em;
  color: var(--page-pg66-guides-slot-strategy-primary-color);
  margin-top: 0;
  margin-bottom: 20px;
}

.page-pg66-guides-slot-strategy__strategy-card p {
  margin-bottom: 15px;
  color: #333;
}

.page-pg66-guides-slot-strategy__strategy-card ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-pg66-guides-slot-strategy__strategy-card ul li {
  margin-bottom: 8px;
  color: #444;
}

.page-pg66-guides-slot-strategy__strategy-card strong {
  color: var(--page-pg66-guides-slot-strategy-primary-color);
}

.page-pg66-guides-slot-strategy__image--small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-pg66-guides-slot-strategy__image--medium {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-pg66-guides-slot-strategy__section--cta {
  background: var(--page-pg66-guides-slot-strategy-background-dark);
  color: var(--page-pg66-guides-slot-strategy-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-pg66-guides-slot-strategy__section--cta .page-pg66-guides-slot-strategy__section-title {
  color: var(--page-pg66-guides-slot-strategy-secondary-color);
}

.page-pg66-guides-slot-strategy__section--cta p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

.page-pg66-guides-slot-strategy__cta-note {
  margin-top: 20px;
  font-style: italic;
  font-size: 1em;
  color: #B0B0B0;
}

.page-pg66-guides-slot-strategy__section--faq {
  background-color: var(--page-pg66-guides-slot-strategy-background-light);
}

.page-pg66-guides-slot-strategy__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid var(--page-pg66-guides-slot-strategy-primary-color);
}

.page-pg66-guides-slot-strategy__faq-question {
  font-size: 1.3em;
  color: var(--page-pg66-guides-slot-strategy-primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-pg66-guides-slot-strategy__faq-answer {
  color: #555;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-pg66-guides-slot-strategy__hero {
    padding: 60px 0;
  }

  .page-pg66-guides-slot-strategy__hero-title {
    font-size: 2.5em;
  }

  .page-pg66-guides-slot-strategy__hero-subtitle {
    font-size: 1.2em;
  }

  .page-pg66-guides-slot-strategy__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-pg66-guides-slot-strategy__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-pg66-guides-slot-strategy__section {
    padding: 40px 0;
  }

  .page-pg66-guides-slot-strategy__section-title {
    font-size: 2em;
  }

  .page-pg66-guides-slot-strategy__card-title {
    font-size: 1.5em;
  }

  .page-pg66-guides-slot-strategy__hero-image-wrapper {
    display: none; /* Hide hero image on smaller screens if it obstructs content */
  }
}

@media (max-width: 480px) {
  .page-pg66-guides-slot-strategy__hero-title {
    font-size: 2em;
  }

  .page-pg66-guides-slot-strategy__hero-subtitle {
    font-size: 1em;
  }

  .page-pg66-guides-slot-strategy__btn {
    display: block;
    margin: 10px auto;
    width: 90%;
    max-width: 280px;
  }

  .page-pg66-guides-slot-strategy__section-title {
    font-size: 1.8em;
  }

  .page-pg66-guides-slot-strategy__card-title {
    font-size: 1.3em;
  }

  .page-pg66-guides-slot-strategy__faq-question {
    font-size: 1.1em;
  }
}