.page-app-download-guide {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-app-download-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background: linear-gradient(135deg, #26A9E0, #1a8ad1); /* Brand color gradient */
  color: #ffffff;
}

.page-app-download-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-app-download-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-app-download-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-app-download-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-app-download-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-guide__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login/Download color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-app-download-guide__cta-button:hover {
  background: #d46b00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-app-download-guide__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 15px;
}

.page-app-download-guide__cta-button--white {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #ffffff;
}

.page-app-download-guide__cta-button--white:hover {
  background: #f0f0f0;
  color: #1a8ad1;
}

.page-app-download-guide__section {
  padding: 80px 20px;
  text-align: center;
}

.page-app-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-app-download-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-app-download-guide__section-title--white {
  color: #ffffff;
}

.page-app-download-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-app-download-guide__text-block--white {
  color: #f0f0f0;
}

.page-app-download-guide__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-app-download-guide__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-app-download-guide__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Features Grid */
.page-app-download-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-guide__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-app-download-guide__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-guide__feature-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-app-download-guide__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

/* Download Steps */
.page-app-download-guide__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-guide__step-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #e0e0e0;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-app-download-guide__step-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-app-download-guide__step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-app-download-guide__step-card ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-app-download-guide__step-card li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-app-download-guide__step-card li strong {
  color: #000000;
}

/* Features Detail Grid */
.page-app-download-guide__features-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-guide__detail-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #e0e0e0;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-app-download-guide__detail-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-app-download-guide__detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-app-download-guide__detail-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-app-download-guide__detail-card li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-app-download-guide__detail-card li strong {
  color: #000000;
}

/* Security Grid */
.page-app-download-guide__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-guide__security-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-app-download-guide__security-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-app-download-guide__security-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-app-download-guide__security-item p {
  color: #f0f0f0;
}

/* Promotions Grid */
.page-app-download-guide__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-guide__promo-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #e0e0e0;
}

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

.page-app-download-guide__promo-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-app-download-guide__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

/* FAQ Section */
.page-app-download-guide__faq-section {
  background-color: #f9f9f9;
  padding-bottom: 60px;
}

.page-app-download-guide__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-app-download-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  color: #333333;
}

details.page-app-download-guide__faq-item summary.page-app-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #333333;
}

details.page-app-download-guide__faq-item summary.page-app-download-guide__faq-question::-webkit-details-marker {
  display: none;
}

details.page-app-download-guide__faq-item summary.page-app-download-guide__faq-question:hover {
  background: #f5f5f5;
}

.page-app-download-guide__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-app-download-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-app-download-guide__faq-item .page-app-download-guide__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

/* Final CTA Section */
.page-app-download-guide__cta-final-section {
  padding: 80px 20px;
  background: linear-gradient(45deg, #26A9E0, #1a8ad1); /* Brand color gradient */
  color: #ffffff;
}

.page-app-download-guide__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-app-download-guide__btn-primary {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-app-download-guide__btn-primary:hover {
  background: #d46b00;
  border-color: #d46b00;
}

.page-app-download-guide__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-app-download-guide__btn-secondary:hover {
  background: #ffffff;
  color: #26A9E0;
}

.page-app-download-guide__text-center {
  text-align: center;
}

.page-app-download-guide__mt-40 {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-app-download-guide__section {
    padding: 60px 15px;
  }
  .page-app-download-guide__hero-section {
    padding: 50px 15px;
  }
  .page-app-download-guide__main-title {
    font-size: 2.5rem;
  }
  .page-app-download-guide__subtitle {
    font-size: 1.1rem;
  }
  .page-app-download-guide__section-title {
    font-size: 2rem;
  }
  .page-app-download-guide__text-block {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-app-download-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-app-download-guide__hero-image img {
    border-radius: 4px;
  }
  
  .page-app-download-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-app-download-guide__cta-button--small {
    width: auto !important; /* Allow smaller buttons to not take full width if in a row */
  }

  .page-app-download-guide__section {
    padding: 40px 15px;
  }

  .page-app-download-guide__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-app-download-guide__main-title {
    font-size: 2rem;
  }

  .page-app-download-guide__subtitle {
    font-size: 0.95rem;
  }

  .page-app-download-guide__section-title {
    font-size: 1.8rem;
  }

  .page-app-download-guide__text-block {
    font-size: 0.9rem;
  }

  .page-app-download-guide__features-grid,
  .page-app-download-guide__download-steps,
  .page-app-download-guide__features-detail-grid,
  .page-app-download-guide__security-grid,
  .page-app-download-guide__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-app-download-guide__feature-item,
  .page-app-download-guide__step-card,
  .page-app-download-guide__detail-card,
  .page-app-download-guide__security-item,
  .page-app-download-guide__promo-card {
    padding: 20px;
  }

  .page-app-download-guide__feature-item img,
  .page-app-download-guide__step-card img,
  .page-app-download-guide__detail-card img,
  .page-app-download-guide__security-item img,
  .page-app-download-guide__promo-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  details.page-app-download-guide__faq-item summary.page-app-download-guide__faq-question {
    padding: 15px;
  }
  .page-app-download-guide__faq-qtext {
    font-size: 15px;
  }

  .page-app-download-guide__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-app-download-guide__button-group .page-app-download-guide__cta-button {
    width: 100% !important;
  }
}