.page-download__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bb0 100%);
}

.page-download__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-download__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-download__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-download__btn-primary,
.page-download__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-download__btn-primary {
  background-color: #EA7C07;
  color: #ffffff;
  border-color: #EA7C07;
}

.page-download__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-download__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-download__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-download__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show part of the device */
  right: 50px;
  max-width: 500px;
  width: 100%;
  z-index: 0;
  opacity: 0.8;
}

.page-download__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-download__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: #26A9E0;
}

.page-download__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #555555;
}

.page-download__feature-section,
.page-download__guide-section,
.page-download__features-highlight-section,
.page-download__security-section,
.page-download__promo-section,
.page-download__faq-section,
.page-download__cta-bottom-section {
  padding: 80px 0;
}

.page-download__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-download__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-download__dark-bg .page-download__section-title {
  color: #ffffff;
}

.page-download__dark-bg .page-download__section-description {
  color: #cccccc;
}

.page-download__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-download__feature-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-download__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-download__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-download__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-download__dark-bg .page-download__feature-card {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-download__dark-bg .page-download__feature-title {
  color: #ffffff;
}

.page-download__dark-bg .page-download__feature-text {
  color: #cccccc;
}

.page-download__platform-guide {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.page-download__guide-block {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download__guide-subtitle {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.page-download__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-download__guide-item {
  margin-bottom: 25px;
}

.page-download__step-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-download__guide-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-download__guide-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download__btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.page-download__important-notes {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin-top: 50px;
  border-left: 5px solid #EA7C07;
}

.page-download__subtitle {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-download__list {
  list-style-type: disc;
  margin-left: 25px;
  color: #cccccc;
}

.page-download__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-download__list li strong {
  color: #ffffff;
}

.page-download__features-highlight-section .page-download__features-grid--highlight {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-download__feature-card--highlight {
  background: #ffffff;
  padding: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-download__feature-card--highlight .page-download__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-download__feature-card--highlight .page-download__feature-title {
  color: #26A9E0;
}

.page-download__feature-card--highlight .page-download__feature-text {
  color: #555555;
}

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

.page-download__security-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download__security-icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-download__security-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-download__security-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #cccccc;
}

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

.page-download__promo-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-download__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-download__promo-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-download__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-download__faq-list {
  margin-top: 50px;
}

.page-download__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-download__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  transition: background 0.3s ease;
}

.page-download__faq-question:hover {
  background: #26A9E0;
}

.page-download__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-download__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-download__faq-item.active .page-download__faq-toggle {
  transform: rotate(45deg);
}

.page-download__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  background: rgba(255, 255, 255, 0.05);
}

.page-download__faq-item.active .page-download__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 20px 25px;
}

.page-download__faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #cccccc;
}

.page-download__cta-bottom-section {
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bb0 100%);
  color: #ffffff;
  text-align: center;
}

.page-download__cta-bottom-section .page-download__section-title,
.page-download__cta-bottom-section .page-download__section-description {
  color: #ffffff;
}

.page-download__cta-buttons--bottom {
  margin-top: 40px;
}

.page-download__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-width: 2px;
}

/* Ensure all images are responsive and not too small */
.page-download img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure content area images are not smaller than 200px */
.page-download__feature-icon,
.page-download__guide-image,
.page-download__feature-image,
.page-download__security-icon,
.page-download__promo-image {
  min-width: 200px;
  min-height: 200px;
  object-fit: contain; /* or cover, depending on desired effect */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-download__hero-title {
    font-size: 3em;
  }

  .page-download__hero-description {
    font-size: 1.1em;
  }

  .page-download__hero-image-wrapper {
    right: 20px;
    max-width: 400px;
  }

  .page-download__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-download__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }

  .page-download__hero-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .page-download__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-download__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-download__btn-primary,
  .page-download__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-download__hero-image-wrapper {
    position: static;
    margin-top: 30px;
    max-width: 300px;
    opacity: 1;
  }

  .page-download__section-title {
    font-size: 1.8em;
  }

  .page-download__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-download__feature-section,
  .page-download__guide-section,
  .page-download__features-highlight-section,
  .page-download__security-section,
  .page-download__promo-section,
  .page-download__faq-section,
  .page-download__cta-bottom-section {
    padding: 50px 0;
  }

  .page-download__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-download__feature-card,
  .page-download__feature-card--highlight,
  .page-download__security-item,
  .page-download__promo-card {
    padding: 25px;
  }

  .page-download__feature-title,
  .page-download__security-title,
  .page-download__promo-title {
    font-size: 1.4em;
  }

  .page-download__platform-guide {
    flex-direction: column;
    gap: 30px;
  }

  .page-download__guide-block {
    padding: 30px;
  }

  .page-download__guide-subtitle {
    font-size: 1.8em;
  }

  .page-download__step-title {
    font-size: 1.2em;
  }

  .page-download__important-notes {
    padding: 25px;
  }

  .page-download__subtitle {
    font-size: 1.6em;
  }

  .page-download__faq-question {
    padding: 18px 20px;
    font-size: 1.1em;
  }

  .page-download__faq-item.active .page-download__faq-answer {
    padding: 15px 20px;
  }

  /* Responsive images */
  .page-download img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all image containers are responsive */
  .page-download__hero-image-wrapper,
  .page-download__feature-card,
  .page-download__feature-card--highlight,
  .page-download__security-item,
  .page-download__promo-card,
  .page-download__guide-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent content overflow */
  }

  .page-download__cta-buttons--bottom {
    flex-direction: column;
    gap: 15px;
  }

  .page-download__btn-large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}