/* style/sic-bo.css */
.page-content.page-sic-bo {
  padding-top: 120px; /* Desktop, to account for fixed header */
  background: var(--dark-bg-1);
  color: #ffffff;
}

.page-sic-bo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A202C, #0D1016);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-sic-bo__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-sic-bo__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-sic-bo__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-sic-bo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-sic-bo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: brightness(0.8); /* Allow brightness to ensure dark overlay */
}

.page-sic-bo__section {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sic-bo__section:last-of-type {
  border-bottom: none;
}

.page-sic-bo__dark-section {
  background: #1A202C;
  color: #ffffff;
}

.page-sic-bo__dark-bg {
  color: #ffffff;
}

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

.page-sic-bo__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-sic-bo__intro p,
.page-sic-bo__strategies p,
.page-sic-bo__advantages p,
.page-sic-bo__promotions p,
.page-sic-bo__registration p,
.page-sic-bo__conclusion p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-sic-bo__intro p:last-child,
.page-sic-bo__strategies p:last-child,
.page-sic-bo__advantages p:last-child,
.page-sic-bo__promotions p:last-child,
.page-sic-bo__registration p:last-child,
.page-sic-bo__conclusion p:last-child {
  margin-bottom: 0;
}

.page-sic-bo__highlight {
  color: #FFD700;
}

.page-sic-bo__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-sic-bo__btn--primary {
  background: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-sic-bo__btn--primary:hover {
  background: #e6c200;
  border-color: #e6c200;
}

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

.page-sic-bo__btn--secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #e6c200;
  border-color: #e6c200;
}

.page-sic-bo__btn--small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
}

.page-sic-bo__btn--large {
  padding: 18px 35px;
  font-size: 20px;
  border-radius: 10px;
}

.page-sic-bo__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-sic-bo__content-grid .page-sic-bo__text-block {
  flex: 1;
}

.page-sic-bo__content-grid .page-sic-bo__image-block {
  flex: 1;
  min-width: 200px;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sic-bo__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sic-bo__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-sic-bo__list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 17px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-sic-bo__list li strong {
  color: #FFD700;
}

.page-sic-bo__list-strategy {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-sic-bo__list-strategy li {
  background: #252d3a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sic-bo__list-strategy li:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-sic-bo__list-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sic-bo__cta-block {
  text-align: center;
  margin-top: 50px;
}

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

.page-sic-bo__advantage-card {
  background: #252d3a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-sic-bo__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-sic-bo__advantage-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-sic-bo__advantage-card p {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
}

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

.page-sic-bo__promo-card {
  background: #252d3a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-sic-bo__promo-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-sic-bo__promo-card p {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-sic-bo__promo-card .page-sic-bo__btn--small {
  margin-bottom: 20px;
}

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

.page-sic-bo__step-card {
  background: #252d3a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #FFD700;
}

.page-sic-bo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-sic-bo__step-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

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

.page-sic-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #252d3a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-sic-bo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2e3646;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  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: #3a4254;
  border-color: #FFD700;
}

.page-sic-bo__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-sic-bo__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.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, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #252d3a;
  border-radius: 0 0 8px 8px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-sic-bo__main-title {
    font-size: 42px;
  }

  .page-sic-bo__subtitle {
    font-size: 18px;
  }

  .page-sic-bo__section-title {
    font-size: 32px;
  }

  .page-sic-bo__content-grid {
    flex-direction: column;
  }

  .page-sic-bo__content-grid .page-sic-bo__image-block {
    order: -1; /* Image above text on smaller screens */
    max-width: 100%;
  }

  .page-sic-bo__list-strategy {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-sic-bo__advantages-grid,
  .page-sic-bo__promo-cards,
  .page-sic-bo__registration-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-content.page-sic-bo {
    padding-top: 100px !important;
  }

  .page-sic-bo__hero-section {
    padding: 40px 15px;
  }

  .page-sic-bo__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-sic-bo__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-sic-bo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sic-bo__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-sic-bo__section {
    padding: 40px 15px;
  }

  .page-sic-bo__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-sic-bo__intro p,
  .page-sic-bo__strategies p,
  .page-sic-bo__advantages p,
  .page-sic-bo__promotions p,
  .page-sic-bo__registration p,
  .page-sic-bo__conclusion p {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sic-bo__list li {
    font-size: 16px;
    padding: 12px 15px;
  }

  .page-sic-bo__list-title {
    font-size: 20px;
  }

  .page-sic-bo__advantage-title,
  .page-sic-bo__promo-title,
  .page-sic-bo__step-title {
    font-size: 20px;
  }

  .page-sic-bo__promo-image {
    height: 200px;
  }

  .page-sic-bo__faq-question {
    padding: 15px 20px;
  }

  .page-sic-bo__faq-question h3 {
    font-size: 16px;
  }

  .page-sic-bo__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }

  .page-sic-bo__faq-answer {
    padding: 0 20px;
  }

  .page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
    padding: 15px 20px !important;
  }

  /* Global image responsive styles */
  .page-sic-bo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-sic-bo__section,
  .page-sic-bo__container,
  .page-sic-bo__content-grid,
  .page-sic-bo__list-strategy,
  .page-sic-bo__advantages-grid,
  .page-sic-bo__promo-cards,
  .page-sic-bo__registration-steps,
  .page-sic-bo__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sic-bo__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-sic-bo__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}