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

.page-sic-bo__hero-section {
  padding-top: 120px; /* For fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #000080, #1a1a1a);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-sic-bo__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-sic-bo__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  color: #FFD700; /* Gold color for heading */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-sic-bo__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-sic-bo__btn {
  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-color: #FFD700; /* Gold background */
  color: #000080; /* Dark blue text for contrast */
  border-color: #FFD700;
}

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

.page-sic-bo__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

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

.page-sic-bo__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-sic-bo__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

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

.page-sic-bo__section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-sic-bo__section--about {
  background-color: #121212;
}

.page-sic-bo__section--why-vicwin {
  background-color: #000080; /* Dark blue background for emphasis */
  color: #ffffff;
}

.page-sic-bo__section--why-vicwin .page-sic-bo__heading {
  color: #FFD700;
}

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

.page-sic-bo__heading {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFD700; /* Gold color for headings */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-sic-bo__sub-heading {
  font-size: 1.8em;
  font-weight: 600;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
}

.page-sic-bo__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-sic-bo__paragraph--cta {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  color: #FFD700;
}

.page-sic-bo__section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-sic-bo__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

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

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

.page-sic-bo__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

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

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

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

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

.page-sic-bo__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.page-sic-bo__feature-card img {
  max-width: 100%; /* Ensure images are not too small */
  height: 200px; /* Fixed height for consistent look */
  object-fit: contain; /* Maintain aspect ratio */
  margin: 0 auto 20px auto;
  border-radius: 5px;
  box-shadow: none;
}

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

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

.page-sic-bo__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-sic-bo__step-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  gap: 30px;
}

.page-sic-bo__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

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

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

.page-sic-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

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

.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: 2em;
  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: 30px;
  height: 30px;
}

.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: #f0f0f0;
}

.page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
  max-height: 1000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
}

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

.page-sic-bo__conclusion-actions {
  text-align: center;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-sic-bo__hero-title {
    font-size: 2.8em;
  }
  .page-sic-bo__heading {
    font-size: 2em;
  }
  .page-sic-bo__sub-heading {
    font-size: 1.6em;
  }
  .page-sic-bo__feature-card img {
    height: 180px;
  }
}

@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__section,
  .page-sic-bo__card,
  .page-sic-bo__container,
  .page-sic-bo__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sic-bo__hero-section {
    padding-top: 100px; /* Adjust for mobile fixed header */
    padding-bottom: 40px;
  }
  .page-sic-bo__hero-title {
    font-size: 2em;
  }
  .page-sic-bo__hero-description {
    font-size: 1em;
  }
  .page-sic-bo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sic-bo__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-sic-bo__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-sic-bo__sub-heading {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-sic-bo__section {
    padding: 40px 0;
  }
  .page-sic-bo__card {
    padding: 20px;
  }
  .page-sic-bo__card-title {
    font-size: 1.3em;
  }
  .page-sic-bo__list-item {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-sic-bo__strategy-grid,
  .page-sic-bo__features-grid,
  .page-sic-bo__step-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sic-bo__feature-card img {
    height: 150px;
  }
  .page-sic-bo__feature-title {
    font-size: 1.4em;
  }
  .page-sic-bo__step-title {
    font-size: 1.4em;
  }
  .page-sic-bo__faq-question {
    padding: 15px 20px;
  }
  .page-sic-bo__faq-question h3 {
    font-size: 1em;
  }
  .page-sic-bo__faq-toggle {
    font-size: 1.8em;
    width: 28px;
    height: 28px;
  }
  .page-sic-bo__faq-item.active .page-sic-bo__faq-answer {
    padding: 15px 20px !important;
  }
}