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

.page-sic-bo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sic-bo__hero-content-section {
  padding-top: 10px; /* Adjust for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
  text-align: center;
}

.page-sic-bo__hero-content-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-sic-bo__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-sic-bo__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sic-bo__intro-text a {
  color: #ffc107; /* Highlight links in intro text */
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-sic-bo__btn-primary,
.page-sic-bo__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-sic-bo__btn-primary {
  background: #ffc107;
  color: #333333;
  border-color: #ffc107;
}

.page-sic-bo__btn-primary:hover {
  background: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sic-bo__btn-secondary {
  background: none;
  color: #ffc107;
  border-color: #ffc107;
}

.page-sic-bo__btn-secondary:hover {
  background: rgba(255, 193, 7, 0.1);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-sic-bo__light-bg {
  background-color: #2a2a2a;
  color: #f0f0f0;
}

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

.page-sic-bo__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

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

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

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

.page-sic-bo__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-sic-bo__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffc107;
  font-weight: bold;
}

.page-sic-bo__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-sic-bo__image-wrapper {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-sic-bo__feature-card {
  background-color: #2a2a2a; /* Card background for dark body */
  border: 1px solid #3a3a3a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sic-bo__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.page-sic-bo__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffc107;
}

.page-sic-bo__feature-description {
  font-size: 1em;
  color: #cccccc;
}

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

.page-sic-bo__step-card {
  background-color: #2a2a2a; /* Card background for dark body */
  border: 1px solid #3a3a3a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sic-bo__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-sic-bo__step-number {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

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

.page-sic-bo__step-description {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-sic-bo__btn-text {
  display: inline-block;
  padding: 10px 20px;
  margin-top: auto;
  border-radius: 5px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-sic-bo__btn-text:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
}

/* FAQ Section */
.page-sic-bo__faq-list {
  margin-top: 40px;
}

.page-sic-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a; /* FAQ item background for dark body */
  border: 1px solid #3a3a3a;
}

.page-sic-bo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #333333;
  border-bottom: 1px solid #444444;
  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-color: #444444;
  border-color: #555555;
}

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

.page-sic-bo__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  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: 30px;
  height: 30px;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Use rotate for smooth plus to minus effect */
}

.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: #cccccc;
  background-color: #2a2a2a;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #3a3a3a;
}

.page-sic-bo__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

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

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

.page-sic-bo__conclusion-container {
  text-align: center;
  padding-bottom: 80px;
}

.page-sic-bo__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .page-sic-bo {
    font-size: 15px;
    line-height: 1.5;
  }
  .page-sic-bo__hero-content-section {
    padding-bottom: 40px;
  }
  .page-sic-bo__hero-content-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-sic-bo__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-sic-bo__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-sic-bo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sic-bo__btn-primary, .page-sic-bo__btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-sic-bo__section {
    padding: 40px 0;
  }
  .page-sic-bo__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-sic-bo__text-block {
    font-size: 0.95em;
  }
  .page-sic-bo__list-item {
    font-size: 0.95em;
    padding-left: 25px;
  }
  .page-sic-bo__list-item::before {
    left: -5px;
  }
  .page-sic-bo__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-sic-bo__feature-title {
    font-size: 1.3em;
  }
  .page-sic-bo__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-sic-bo__step-title {
    font-size: 1.2em;
  }
  .page-sic-bo__faq-question {
    padding: 15px 20px;
  }
  .page-sic-bo__faq-question h3 {
    font-size: 1.1em;
  }
  .page-sic-bo__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }
  .page-sic-bo__faq-answer {
    padding: 0 20px;
  }
  .page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
    padding: 15px 20px !important;
  }
  .page-sic-bo__image-wrapper {
    max-width: 100%;
  }
  /* Ensure all images are responsive */
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@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__feature-title {
    font-size: 1.1em;
  }
  .page-sic-bo__step-title {
    font-size: 1.1em;
  }
  .page-sic-bo__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}