/* style/resources-sunwin-download-guide.css */
.page-resources-sunwin-download-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #222; /* Inherited from body */
}

.page-resources-sunwin-download-guide__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-resources-sunwin-download-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-sunwin-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-sunwin-download-guide__section {
  padding: 60px 0;
}

.page-resources-sunwin-download-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-resources-sunwin-download-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

/* Hero Section */
.page-resources-sunwin-download-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  padding-top: 0; /* Handled by shared.css body padding */
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-resources-sunwin-download-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
  z-index: 1;
}

.page-resources-sunwin-download-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-sunwin-download-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7); /* Darken image for better text contrast */
}

.page-resources-sunwin-download-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
}

.page-resources-sunwin-download-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-resources-sunwin-download-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-sunwin-download-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-sunwin-download-guide__btn-primary,
.page-resources-sunwin-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-sunwin-download-guide__btn-primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-resources-sunwin-download-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-sunwin-download-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-sunwin-download-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-resources-sunwin-download-guide__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Download Platform Section */
.page-resources-sunwin-download-guide__download-platform {
  margin-bottom: 60px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
  color: #333333;
}

.page-resources-sunwin-download-guide__download-platform:last-child {
  margin-bottom: 0;
}

.page-resources-sunwin-download-guide__platform-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-sunwin-download-guide__platform-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-sunwin-download-guide__step-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-resources-sunwin-download-guide__step-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-sunwin-download-guide__step-list li strong {
  color: #0A2463;
}

/* Info Block */
.page-resources-sunwin-download-guide__info-block {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-resources-sunwin-download-guide__info-block:last-child {
  margin-bottom: 0;
}

.page-resources-sunwin-download-guide__info-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

/* Benefits Grid */
.page-resources-sunwin-download-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sunwin-download-guide__benefit-card {
  background-color: #0A2463;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-sunwin-download-guide__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-sunwin-download-guide__benefit-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-sunwin-download-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Troubleshoot List */
.page-resources-sunwin-download-guide__troubleshoot-list {
  list-style-type: disc;
  padding-left: 25px;
  color: #f0f0f0;
}

.page-resources-sunwin-download-guide__troubleshoot-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-sunwin-download-guide__troubleshoot-list li strong {
  color: #FFD700;
}

.page-resources-sunwin-download-guide__troubleshoot-list ul {
  list-style-type: circle;
  padding-left: 20px;
  margin-top: 10px;
  color: #f8f8f8;
}

.page-resources-sunwin-download-guide__troubleshoot-list ul li {
  margin-bottom: 5px;
  font-size: 1em;
}

/* FAQ Section */
.page-resources-sunwin-download-guide__faq-list {
  margin-top: 40px;
}

.page-resources-sunwin-download-guide__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-resources-sunwin-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #0A2463;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-resources-sunwin-download-guide__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-sunwin-download-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-sunwin-download-guide__faq-item.active .page-resources-sunwin-download-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-sunwin-download-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f8f8f8;
  color: #333333;
}

.page-resources-sunwin-download-guide__faq-item.active .page-resources-sunwin-download-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources-sunwin-download-guide__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

/* CTA Section */
.page-resources-sunwin-download-guide__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-resources-sunwin-download-guide__cta-section .page-resources-sunwin-download-guide__section-title {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-sunwin-download-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-sunwin-download-guide__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-sunwin-download-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-sunwin-download-guide__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }

  .page-resources-sunwin-download-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-sunwin-download-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-sunwin-download-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-sunwin-download-guide__btn-primary,
  .page-resources-sunwin-download-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-resources-sunwin-download-guide__section {
    padding: 40px 0;
  }

  .page-resources-sunwin-download-guide__section-title {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .page-resources-sunwin-download-guide__text-block {
    font-size: 1em;
  }

  .page-resources-sunwin-download-guide__download-platform,
  .page-resources-sunwin-download-guide__info-block,
  .page-resources-sunwin-download-guide__benefit-card,
  .page-resources-sunwin-download-guide__faq-item {
    padding: 20px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-resources-sunwin-download-guide__platform-title {
    font-size: 1.8em;
  }

  .page-resources-sunwin-download-guide__info-title {
    font-size: 1.6em;
  }

  .page-resources-sunwin-download-guide__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-sunwin-download-guide__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-sunwin-download-guide__faq-answer {
    padding: 15px;
  }

  /* Image and video responsiveness */
  .page-resources-sunwin-download-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-sunwin-download-guide video,
  .page-resources-sunwin-download-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-sunwin-download-guide__video-section,
  .page-resources-sunwin-download-guide__video-container,
  .page-resources-sunwin-download-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-sunwin-download-guide__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-sunwin-download-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-sunwin-download-guide__hero-description {
    font-size: 0.95em;
  }

  .page-resources-sunwin-download-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-sunwin-download-guide__platform-title {
    font-size: 1.5em;
  }

  .page-resources-sunwin-download-guide__info-title {
    font-size: 1.4em;
  }
}