/* style/sic-bo.css */
.page-sic-bo {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000; /* Body background from shared.css */
}

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

/* Fixed navigation bar spacing */
.page-sic-bo__hero-section {
  padding-top: 120px; /* Adjust for fixed header */
}

/* General Section Styles */
.page-sic-bo__dark-bg {
  background-color: #1a1a1a; /* Dark background for sections */
  color: #ffffff;
}

.page-sic-bo__light-bg {
  background-color: #f5f5f5; /* Light background for sections */
  color: #333333;
}

.page-sic-bo__section-title {
  font-size: 3em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffc107; /* Highlight with auxiliary color */
  font-weight: bold;
}

.page-sic-bo__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-sic-bo__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Primary brand color gradient */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-sic-bo__hero-content-wrapper {
  flex: 1;
  padding-left: 50px;
  z-index: 1;
}

.page-sic-bo__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-sic-bo__hero-description {
  font-size: 1.5em;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
}

.page-sic-bo__hero-cta-group {
  display: flex;
  gap: 20px;
}

.page-sic-bo__hero-image-container {
  flex: 1;
  text-align: right;
  padding-right: 50px;
  z-index: 1;
}

.page-sic-bo__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-sic-bo__btn-primary,
.page-sic-bo__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-sic-bo__btn-primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #1a1a1a; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

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

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

.page-sic-bo__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sic-bo__btn-centered {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

/* Feature Cards */
.page-sic-bo__feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sic-bo__feature-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-sic-bo__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-sic-bo__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #007bff;
}

.page-sic-bo__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Lists */
.page-sic-bo__numbered-list,
.page-sic-bo__bullet-list {
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-sic-bo__list-item {
  margin-bottom: 10px;
}

/* Strategy Grid */
.page-sic-bo__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sic-bo__strategy-card {
  background-color: #ffffff;
  color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-sic-bo__strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.page-sic-bo__strategy-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007bff;
}

.page-sic-bo__strategy-text {
  font-size: 0.95em;
  color: #555555;
}

/* Promotion Grid */
.page-sic-bo__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sic-bo__promotion-card {
  background-color: #ffffff;
  color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-sic-bo__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.page-sic-bo__promotion-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #007bff;
}

.page-sic-bo__promotion-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

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

.page-sic-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #2a2a2a; /* Darker background for FAQ items */
  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;
  padding: 0 20px;
  opacity: 0;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
  max-height: 2000px !important; /* Ensure enough space */
  padding: 20px !important;
  opacity: 1;
  background: #3a3a3a;
  border-radius: 0 0 5px 5px;
}

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

.page-sic-bo__faq-question:active {
  background: #4a4a4a;
}

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

.page-sic-bo__faq-toggle {
  font-size: 24px;
  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: 28px;
  height: 28px;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to minus sign visually */
}

/* Contact Section */
.page-sic-bo__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-sic-bo__contact-info p {
  margin-bottom: 10px;
}

.page-sic-bo__contact-link {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sic-bo__contact-link:hover {
  color: #e0a800;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sic-bo__hero-section {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    padding-top: 100px; /* Adjust for fixed header on tablet */
  }

  .page-sic-bo__hero-content-wrapper {
    padding: 0 30px;
    text-align: center;
    margin-bottom: 40px;
  }

  .page-sic-bo__hero-image-container {
    padding-right: 0;
    padding: 0 30px;
  }

  .page-sic-bo__hero-title {
    font-size: 3em;
  }

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

@media (max-width: 768px) {
  .page-sic-bo {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sic-bo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-sic-bo__hero-section {
    padding-top: 100px; /* Adjust for fixed header on mobile */
    padding-bottom: 40px;
  }

  .page-sic-bo__hero-content-wrapper {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .page-sic-bo__hero-image-container {
    padding: 0 15px;
  }

  .page-sic-bo__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-sic-bo__hero-description {
    font-size: 1.1em;
    margin-bottom: 25px;
  }

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

  .page-sic-bo__btn-primary,
  .page-sic-bo__btn-secondary {
    padding: 12px 20px;
    font-size: 1.1em;
  }

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

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

  .page-sic-bo__feature-cards,
  .page-sic-bo__strategy-grid,
  .page-sic-bo__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sic-bo__feature-card,
  .page-sic-bo__strategy-card,
  .page-sic-bo__promotion-card {
    padding: 20px;
  }

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

  .page-sic-bo__feature-title,
  .page-sic-bo__strategy-title,
  .page-sic-bo__promotion-title {
    font-size: 1.5em;
  }

  .page-sic-bo__numbered-list,
  .page-sic-bo__bullet-list {
    margin-left: 15px;
    font-size: 1em;
  }

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

  .page-sic-bo__faq-question h3 {
    font-size: 1em;
  }

  .page-sic-bo__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

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

  .page-sic-bo__contact-info {
    font-size: 1em;
  }

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