/* style/sic-bo.css */
.page-sic-bo {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background #121212 */
  background-color: #121212;
}

.page-sic-bo__hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px; /* Adjust for fixed header */
  background: linear-gradient(135deg, #1A1A1A 0%, #0d0d0d 100%);
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.page-sic-bo__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-sic-bo__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  line-height: 1.2;
}

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

.page-sic-bo__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  position: relative;
  z-index: 0;
}

.page-sic-bo__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
  object-fit: cover;
}

.page-sic-bo__section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-sic-bo__section--introduction {
  background-color: #121212;
}

.page-sic-bo__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-sic-bo__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-sic-bo__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-sic-bo__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-sic-bo__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-sic-bo__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-sic-bo__list-item b {
  color: #FFD700;
}

.page-sic-bo__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-sic-bo__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-sic-bo__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-sic-bo__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sic-bo__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.page-sic-bo__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-sic-bo__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-sic-bo__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-sic-bo__card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-sic-bo__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.page-sic-bo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sic-bo__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sic-bo__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-sic-bo__features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-sic-bo__features-list .page-sic-bo__list-item {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-sic-bo__features-list .page-sic-bo__list-item b {
  color: #FFD700;
}

.page-sic-bo__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sic-bo__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sic-bo__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-sic-bo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.page-sic-bo__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sic-bo__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sic-bo__promo-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-sic-bo__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sic-bo__info-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-sic-bo__info-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-sic-bo__info-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sic-bo__info-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-sic-bo__faq-list {
  margin-top: 40px;
}

.page-sic-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-sic-bo__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
  max-height: 2000px !important; /* Use !important to ensure priority */
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 5px 5px;
}

.page-sic-bo__faq-answer p {
  color: #e0e0e0;
  font-size: 1em;
}

.page-sic-bo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-sic-bo__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-sic-bo__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-sic-bo__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X or rotate for active state */
}

.page-sic-bo__section--cta {
  background-color: #0d0d0d;
  text-align: center;
  padding: 80px 20px;
}

.page-sic-bo__cta-content {
  max-width: 900px;
}

.page-sic-bo__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-sic-bo__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sic-bo__hero-title {
    font-size: 3em;
  }
  .page-sic-bo__hero-description {
    font-size: 1.1em;
  }
  .page-sic-bo__section-title {
    font-size: 2em;
  }
  .page-sic-bo__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-sic-bo__hero-banner {
    padding-top: 100px; /* Mobile adjust for fixed header */
    padding-bottom: 40px;
  }
  .page-sic-bo__hero-title {
    font-size: 2.2em;
  }
  .page-sic-bo__hero-description {
    font-size: 1em;
  }
  .page-sic-bo__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-sic-bo__section {
    padding: 40px 15px;
  }
  .page-sic-bo__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-sic-bo__sub-title {
    font-size: 1.5em;
  }
  .page-sic-bo__paragraph,
  .page-sic-bo__list-item,
  .page-sic-bo__card-description,
  .page-sic-bo__promo-description,
  .page-sic-bo__info-description {
    font-size: 0.95em;
  }
  .page-sic-bo__cards-grid,
  .page-sic-bo__promotions-grid,
  .page-sic-bo__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sic-bo__card,
  .page-sic-bo__promo-card,
  .page-sic-bo__info-item {
    padding: 20px;
  }
  .page-sic-bo__card-image,
  .page-sic-bo__promo-image {
    height: 180px;
  }
  .page-sic-bo__card-title,
  .page-sic-bo__promo-title,
  .page-sic-bo__info-title {
    font-size: 1.3em;
  }
  .page-sic-bo__image-full-width {
    margin: 30px auto;
  }
  .page-sic-bo__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-sic-bo__faq-question h3 {
    font-size: 1.1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-sic-bo__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-sic-bo__faq-answer {
    padding: 0 15px;
  }
  .page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
    padding: 15px !important;
  }
  .page-sic-bo__cta-title {
    font-size: 2em;
  }
  .page-sic-bo__cta-description {
    font-size: 1em;
  }

  /* Mobile specific image adaptation */
  .page-sic-bo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-sic-bo__section,
  .page-sic-bo__card,
  .page-sic-bo__container,
  .page-sic-bo__hero-image-wrapper,
  .page-sic-bo__promo-card,
  .page-sic-bo__info-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sic-bo__hero-banner .page-sic-bo__hero-content {
    padding-left: 0;
    padding-right: 0;
  }
}