/* style/sic-bo.css */
.page-sic-bo {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background #0a0a0a is dark, so text is light */
  background-color: #0a0a0a;
}

.page-sic-bo__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 80px; /* Adjusted padding for fixed header */
  background: linear-gradient(135deg, #1A2B4C, #0a0a0a);
  color: #ffffff;
  text-align: center;
}

.page-sic-bo__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-sic-bo__main-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-sic-bo__hero-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-sic-bo__hero-description a:hover {
  text-decoration: underline;
}

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

.page-sic-bo__btn-primary,
.page-sic-bo__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  white-space: nowrap;
}

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

.page-sic-bo__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-sic-bo__btn-secondary:hover {
  background: #FFD700;
  color: #1A2B4C;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sic-bo__btn-full-width {
  width: 100%;
  max-width: 300px;
  margin: 15px auto;
}

.page-sic-bo__section {
  padding: 60px 20px;
}

.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: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-sic-bo__section-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-sic-bo__section-title a:hover {
  text-decoration: underline;
}

.page-sic-bo__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-sic-bo__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-sic-bo__text-block a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-sic-bo__text-block a:hover {
  text-decoration: underline;
}

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

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

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

.page-sic-bo__list-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-sic-bo__list-item a:hover {
  text-decoration: underline;
}

.page-sic-bo__section--about .page-sic-bo__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-sic-bo__section--strategy .page-sic-bo__image-wrapper {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

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

.page-sic-bo__section--dark-bg {
  background-color: #1A2B4C;
  color: #ffffff;
}

.page-sic-bo__section--light-bg {
  background-color: #0d0d0d;
  color: #f0f0f0;
}

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

.page-sic-bo__feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sic-bo__feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-sic-bo__feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-sic-bo__icon-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

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

.page-sic-bo__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-sic-bo__card-title a:hover {
  text-decoration: underline;
}

.page-sic-bo__card-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

.page-sic-bo__card-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-sic-bo__card-description a:hover {
  text-decoration: underline;
}

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

.page-sic-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background-color: rgba(26, 43, 76, 0.6); /* Darker background for FAQ items */
}

.page-sic-bo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(26, 43, 76, 0.8); /* Slightly lighter for question */
  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: rgba(26, 43, 76, 0.95);
}

.page-sic-bo__faq-question:active {
  background: #1A2B4C;
}

.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;
}

.page-sic-bo__faq-question h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-sic-bo__faq-question h3 a:hover {
  text-decoration: underline;
}

.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: 15px;
  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 {
  color: #ffffff;
  transform: rotate(45deg);
}

.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;
  background: rgba(13, 13, 13, 0.9); /* Dark background for answer */
  color: #f0f0f0;
  border-radius: 0 0 8px 8px;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-sic-bo__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

.page-sic-bo__faq-answer p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-sic-bo__faq-answer p a:hover {
  text-decoration: underline;
}

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

  .page-sic-bo__section-title {
    font-size: 2em;
  }

  .page-sic-bo__sub-title {
    font-size: 1.6em;
  }

  .page-sic-bo__features-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-sic-bo__hero-section {
    padding-top: 100px; /* Adjusted padding for mobile fixed header */
    padding-bottom: 60px;
  }

  .page-sic-bo__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sic-bo__main-title {
    font-size: 2.2em;
  }

  .page-sic-bo__hero-description {
    font-size: 1em;
  }

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

  .page-sic-bo__btn-primary,
  .page-sic-bo__btn-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 12px 20px;
    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.4em;
  }

  .page-sic-bo__text-block,
  .page-sic-bo__list-item,
  .page-sic-bo__card-description {
    font-size: 0.95em;
  }

  .page-sic-bo__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sic-bo__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-sic-bo__icon-image {
    width: 50px;
    height: 50px;
  }

  .page-sic-bo__card-title {
    font-size: 1.3em;
  }

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

  .page-sic-bo__faq-question h3 {
    font-size: 1.05em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }

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

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

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

  /* Ensure all images and their containers are responsive */
  .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__image-wrapper,
  .page-sic-bo__feature-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sic-bo__hero-section .page-sic-bo__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-sic-bo__feature-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .page-sic-bo__main-title {
    font-size: 1.8em;
  }

  .page-sic-bo__section-title {
    font-size: 1.6em;
  }

  .page-sic-bo__hero-description {
    font-size: 0.9em;
  }
}