.page-blog-wibet-app-download-and-installation {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-wibet-app-download-and-installation__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small padding-top as body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-wibet-app-download-and-installation__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-wibet-app-download-and-installation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-wibet-app-download-and-installation__hero-content {
  max-width: 900px;
  margin-top: 40px;
  z-index: 1;
}

.page-blog-wibet-app-download-and-installation__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-wibet-app-download-and-installation__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-wibet-app-download-and-installation__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-wibet-app-download-and-installation__btn-primary,
.page-blog-wibet-app-download-and-installation__btn-secondary {
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  display: inline-block;
  text-align: center;
}

.page-blog-wibet-app-download-and-installation__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-wibet-app-download-and-installation__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-wibet-app-download-and-installation__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Main color from gradient */
  border: 2px solid #2AD16F;
}

.page-blog-wibet-app-download-and-installation__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-blog-wibet-app-download-and-installation__btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.page-blog-wibet-app-download-and-installation__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-wibet-app-download-and-installation__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-wibet-app-download-and-installation__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-wibet-app-download-and-installation__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-wibet-app-download-and-installation__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-wibet-app-download-and-installation__feature-title {
  font-size: 1.5rem;
  color: #2AD16F; /* Main color from gradient */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-wibet-app-download-and-installation__feature-item p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  text-align: left;
}

.page-blog-wibet-app-download-and-installation__instruction-section {
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E;
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-wibet-app-download-and-installation__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-wibet-app-download-and-installation__step-card {
  background-color: #08160F; /* Background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-wibet-app-download-and-installation__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-blog-wibet-app-download-and-installation__step-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-wibet-app-download-and-installation__step-card p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  text-align: center;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-wibet-app-download-and-installation__step-card .page-blog-wibet-app-download-and-installation__btn-primary {
  margin-top: auto;
}

.page-blog-wibet-app-download-and-installation__installation-guide .page-blog-wibet-app-download-and-installation__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-blog-wibet-app-download-and-installation__installation-guide .page-blog-wibet-app-download-and-installation__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-wibet-app-download-and-installation__ordered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-wibet-app-download-and-installation__ordered-list li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  position: relative;
  padding-left: 70px;
}

.page-blog-wibet-app-download-and-installation__ordered-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-blog-wibet-app-download-and-installation__list-title {
  font-size: 1.3rem;
  color: #2AD16F; /* Main color from gradient */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-wibet-app-download-and-installation__ordered-list p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  text-align: left;
}

.page-blog-wibet-app-download-and-installation__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-wibet-app-download-and-installation__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-wibet-app-download-and-installation__card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-wibet-app-download-and-installation__card p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-wibet-app-download-and-installation__card .page-blog-wibet-app-download-and-installation__btn-primary,
.page-blog-wibet-app-download-and-installation__card .page-blog-wibet-app-download-and-installation__btn-secondary {
  margin-top: auto;
}

.page-blog-wibet-app-download-and-installation__problem-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-wibet-app-download-and-installation__problem-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-wibet-app-download-and-installation__problem-title {
  font-size: 1.3rem;
  color: #2AD16F; /* Main color from gradient */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-wibet-app-download-and-installation__problem-item p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  text-align: left;
}

.page-blog-wibet-app-download-and-installation__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-wibet-app-download-and-installation__benefit-card {
  text-align: center;
}

.page-blog-wibet-app-download-and-installation__benefit-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-wibet-app-download-and-installation__benefit-card p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  text-align: center;
}

.page-blog-wibet-app-download-and-installation__faq-list {
  margin-top: 40px;
}

.page-blog-wibet-app-download-and-installation__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-wibet-app-download-and-installation__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-blog-wibet-app-download-and-installation__faq-item summary:hover {
  background-color: #13994A; /* Darker green on hover */
}

.page-blog-wibet-app-download-and-installation__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-wibet-app-download-and-and-installation__faq-qtext {
  flex-grow: 1;
}

.page-blog-wibet-app-download-and-installation__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-blog-wibet-app-download-and-installation__faq-item[open] .page-blog-wibet-app-download-and-installation__faq-toggle {
  content: '−';
}

.page-blog-wibet-app-download-and-installation__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-blog-wibet-app-download-and-installation__call-to-action {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #2E7A4E;
}

.page-blog-wibet-app-download-and-installation__call-to-action .page-blog-wibet-app-download-and-installation__section-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
}

.page-blog-wibet-app-download-and-installation__call-to-action .page-blog-wibet-app-download-and-installation__text-block {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

/* Color Contrast Classes */
.page-blog-wibet-app-download-and-installation__dark-bg {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-wibet-app-download-and-installation__light-bg {
  color: #08160F; /* Dark text for light background, but here it's still dark, so use Text Main */
  background-color: #11271B; /* Card BG */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-wibet-app-download-and-installation__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-wibet-app-download-and-installation__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-wibet-app-download-and-installation__section {
    padding: 40px 15px;
  }

  .page-blog-wibet-app-download-and-installation__main-title {
    font-size: 2.2rem;
  }

  .page-blog-wibet-app-download-and-installation__hero-description {
    font-size: 1rem;
  }

  .page-blog-wibet-app-download-and-installation__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-blog-wibet-app-download-and-installation__btn-primary,
  .page-blog-wibet-app-download-and-installation__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-wibet-app-download-and-installation__btn-large {
    font-size: 1rem;
  }

  .page-blog-wibet-app-download-and-installation__section-title {
    font-size: 2rem;
  }

  .page-blog-wibet-app-download-and-installation__feature-list,
  .page-blog-wibet-app-download-and-installation__step-by-step,
  .page-blog-wibet-app-download-and-installation__info-cards,
  .page-blog-wibet-app-download-and-installation__benefit-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-blog-wibet-app-download-and-installation__ordered-list li {
    padding: 25px 20px 25px 60px;
  }

  .page-blog-wibet-app-download-and-installation__ordered-list li::before {
    left: 15px;
    top: 25px;
  }

  .page-blog-wibet-app-download-and-installation__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-blog-wibet-app-download-and-installation__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure all images are responsive */
  .page-blog-wibet-app-download-and-installation img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure all video elements are responsive */
  .page-blog-wibet-app-download-and-installation video,
  .page-blog-wibet-app-download-and-installation__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video container mobile adaptation */
  .page-blog-wibet-app-download-and-installation__video-section,
  .page-blog-wibet-app-download-and-installation__video-container,
  .page-blog-wibet-app-download-and-installation__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Video area top margin for mobile: small amount only, no var(--header-offset) */
  .page-blog-wibet-app-download-and-installation__video-section {
    padding-top: 10px !important;
  }

  /* Video wrapper must ensure not to exceed container on mobile */
  .page-blog-wibet-app-download-and-installation__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* All containers containing images or content to prevent overflow */
  .page-blog-wibet-app-download-and-installation__section,
  .page-blog-wibet-app-download-and-installation__card,
  .page-blog-wibet-app-download-and-installation__container,
  .page-blog-wibet-app-download-and-installation__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-blog-wibet-app-download-and-installation__cta-buttons {
    padding-left: 0;
    padding-right: 0;
  }
}