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

/* Fixed navigation bar spacing - Important for pages without HERO or with HERO that doesn't push content */
/* The HERO section for this page is full-width and extends to the top, so no padding-top is needed on main sections */
/* If a future page doesn't have a hero, this should be applied to the first content section */
/* For this specific page, the hero covers the top, so other sections don't need this initial padding. */

.page-sic-bo__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0; /* Ensure no extra space at the top */
}

.page-sic-bo__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-sic-bo__hero-image {
  width: 100%;
  margin: 0;
}

.page-sic-bo__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-sic-bo__section-heading,
.page-sic-bo__main-heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold color for headings */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-sic-bo__main-heading {
  font-size: 44px;
  margin-bottom: 40px;
}

.page-sic-bo__sub-heading {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold color for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-sic-bo__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

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

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

.page-sic-bo__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

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

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

.page-sic-bo__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Section Backgrounds for Contrast */
.page-sic-bo__introduction-section,
.page-sic-bo__dark-section {
  background-color: #1A1A1A; /* Auxiliary dark color */
  color: #ffffff;
  padding: 60px 0;
}

.page-sic-bo__content-section,
.page-sic-bo__light-bg {
  background-color: #f0f0f0; /* Light background for contrast */
  color: #333333;
  padding: 60px 0;
}

.page-sic-bo__light-bg .page-sic-bo__section-heading,
.page-sic-bo__light-bg .page-sic-bo__sub-heading {
  color: #1A1A1A;
}

.page-sic-bo__light-bg .page-sic-bo__paragraph a {
  color: #007bff;
}

/* CTA Buttons */
.page-sic-bo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.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: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-sic-bo__btn-primary {
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

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

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

.page-sic-bo__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark bg */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

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

.page-sic-bo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-sic-bo__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin: 0;
  text-align: center;
}

.page-sic-bo__card-text {
  font-size: 16px;
  padding: 0 20px 20px;
  margin: 0;
  text-align: justify;
  flex-grow: 1;
}

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

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

/* Benefits List */
.page-sic-bo__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-sic-bo__benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sic-bo__benefits-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sic-bo__benefits-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  object-fit: contain;
  background-color: #FFD700;
  border-radius: 50%;
  padding: 10px;
}

.page-sic-bo__benefits-text {
  flex-grow: 1;
}

.page-sic-bo__benefits-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-sic-bo__benefits-description {
  font-size: 16px;
  color: #f0f0f0;
  margin: 0;
}

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

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

/* FAQ Section */
.page-sic-bo__faq-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  color: #ffffff;
}

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

.page-sic-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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 15px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
}

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

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

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

.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: 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;
  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 */
}

/* Call to Action Section */
.page-sic-bo__call-to-action {
  padding: 80px 0;
  text-align: center;
  background-color: #f0f0f0;
  color: #333333;
}

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

.page-sic-bo__call-to-action .page-sic-bo__section-heading {
  color: #1A1A1A;
}

.page-sic-bo__call-to-action .page-sic-bo__paragraph a {
  color: #007bff;
}

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

  .page-sic-bo__section-heading {
    font-size: 30px;
  }

  .page-sic-bo__sub-heading {
    font-size: 22px;
  }

  .page-sic-bo__paragraph,
  .page-sic-bo__list,
  .page-sic-bo__list-item {
    font-size: 17px;
  }

  .page-sic-bo__benefits-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-sic-bo__benefits-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-sic-bo__container {
    padding: 30px 15px;
  }

  .page-sic-bo__main-heading {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .page-sic-bo__section-heading {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .page-sic-bo__sub-heading {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-sic-bo__paragraph,
  .page-sic-bo__list,
  .page-sic-bo__list-item,
  .page-sic-bo__card-text,
  .page-sic-bo__benefits-description {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .page-sic-bo__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

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

  .page-sic-bo__cards-grid,
  .page-sic-bo__benefits-list {
    gap: 20px;
  }

  .page-sic-bo__card-image {
    height: 180px;
  }

  .page-sic-bo__card-title {
    font-size: 20px;
    padding: 15px 15px 8px;
  }

  .page-sic-bo__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-sic-bo__faq-question h3 {
    font-size: 16px;
    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;
  }

  /* Ensure all images and containers 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,
  .page-sic-bo__hero-section,
  .page-sic-bo__introduction-section,
  .page-sic-bo__content-section,
  .page-sic-bo__faq-section,
  .page-sic-bo__call-to-action {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}