.page-download__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bbd 100%);
}

.page-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

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

.page-download__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-download__download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-download__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
  box-sizing: border-box;
}

.page-download__cta-button img {
  margin-right: 10px;
  
  
  vertical-align: middle;
  filter: none; /* Ensure no CSS filter */
}

.page-download__btn-primary {
  background: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

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

.page-download__hero-image-wrapper {
  margin-top: 30px;
}

.page-download__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  filter: none; /* Ensure no CSS filter */
}

.page-download__section {
  padding: 60px 20px;
  text-align: center;
}

.page-download__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-download__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download__why-download-section {
  background: #ffffff;
  color: #333333;
}

.page-download__why-download-section .page-download__section-title,
.page-download__why-download-section .page-download__section-description {
  color: #333333;
}

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

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

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

.page-download__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter */
}

.page-download__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 600;
  color: #26A9E0;
}

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

.page-download__how-to-download-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-download__how-to-download-section .page-download__section-title,
.page-download__how-to-download-section .page-download__section-description {
  color: #ffffff;
}

.page-download__download-platform-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.page-download__platform-button {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.page-download__platform-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.page-download__platform-button--active {
  background: #ffffff;
  color: #26A9E0;
  font-weight: 600;
}

.page-download__download-steps {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  align-items: center;
}

.page-download__download-steps--active {
  display: grid;
}

.page-download__download-steps-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-download__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 20px;
}

.page-download__step-number {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  background: #EA7C07;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

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

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

.page-download__qr-code-wrapper {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  grid-column: 2 / 3; /* Position QR code in the second column */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-download__qr-code {
  width: 250px;
  height: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  filter: none; /* Ensure no CSS filter */
}

.page-download__qr-text {
  font-size: 1.1em;
  color: #ffffff;
  font-weight: 500;
}

.page-download__app-features-section {
  background: #f8f8f8;
  color: #333333;
}

.page-download__app-features-section .page-download__section-title,
.page-download__app-features-section .page-download__section-description {
  color: #333333;
}

.page-download__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-download__feature-item {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.page-download__feature-item:hover {
  transform: translateY(-3px);
}

.page-download__feature-list-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 20px;
  filter: none; /* Ensure no CSS filter */
}

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

.page-download__feature-list-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
}

.page-download__security-section {
  background: #26A9E0;
  color: #ffffff;
}

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

.page-download__security-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-download__security-text {
  flex: 1;
}

.page-download__security-text p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-download__security-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  filter: none; /* Ensure no CSS filter */
}

.page-download__faq-section {
  background: #ffffff;
  color: #333333;
}

.page-download__faq-section .page-download__section-title,
.page-download__faq-section .page-download__section-description {
  color: #333333;
}

.page-download__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-download__faq-item {
  background: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-download__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  user-select: none;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-download__faq-item[open] .page-download__faq-question {
  border-bottom: 1px solid #d0d0d0;
  background: #e5e5e5;
}

.page-download__faq-question::-webkit-details-marker {
  display: none;
}

.page-download__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-download__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  color: #26A9E0;
  margin-left: 15px;
}

.page-download__faq-item[open] .page-download__faq-toggle {
  content: '−';
}

.page-download__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  background: #f8f8f8;
}

.page-download__cta-bottom-section {
  background: #26A9E0;
  color: #ffffff;
  padding: 80px 20px;
}

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

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

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

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

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

  .page-download__cta-button {
    max-width: 100% !important;
    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__section {
    padding: 40px 15px;
  }

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

  .page-download__section-description {
    font-size: 0.95em;
  }

  .page-download__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-download__download-steps {
    grid-template-columns: 1fr;
  }

  .page-download__qr-code-wrapper {
    grid-column: 1 / 2; /* QR code moves to single column */
    margin-top: 30px;
  }

  .page-download__security-content {
    flex-direction: column;
    text-align: center;
  }

  .page-download__security-image {
    max-width: 100%;
    margin-top: 30px;
  }

  .page-download__features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-download img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    filter: none !important; /* Ensure no CSS filter */
  }
  
  .page-download__section,
  .page-download__card,
  .page-download__container,
  .page-download__download-steps-wrapper,
  .page-download__download-buttons,
  .page-download__qr-code-wrapper,
  .page-download__security-content,
  .page-download__features-list,
  .page-download__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-download__download-buttons {
    flex-wrap: wrap !important;
    gap: 15px !important;
  }
}

/* Additional color contrast rules */
.page-download__dark-bg {
  color: #ffffff; 
  background: #26A9E0;
}

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

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

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

.page-download__faq-qtext {
  color: #26A9E0;
}

.page-download__faq-toggle {
  color: #26A9E0;
}