.page-download {
  font-family: Arial, sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-download__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 60px;
  background-color: #2F6BFF; /* Main Color */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-download__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width if it's too wide */
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.page-download__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-download__hero-content {
  z-index: 1; /* Ensure content is above any background elements if present */
  max-width: 800px;
}

.page-download__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-download__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #E0EFFF; /* Lighter text for contrast */
  margin-bottom: 30px;
}

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

.page-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  min-height: 48px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-download__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  line-height: 1.3;
}

.page-download__platform-section {
  padding: 40px 0;
}

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

.page-download__platform-item {
  background-color: #FFFFFF; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF; /* Border */
}

.page-download__platform-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 20px;
}

.page-download__qr-code-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.page-download__qr-code {
  max-width: 200px; /* QR code specific size, matches HTML width */
  height: auto;
  border: 5px solid #F4F7FB; /* Background */
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
}

.page-download__platform-text {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 25px;
}

.page-download__installation-guide-section {
  padding: 40px 0;
  background-color: #E0EFFF; /* A lighter shade for contrast */
}

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

.page-download__guide-item {
  background-color: #FFFFFF; /* Card B G */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

.page-download__guide-step-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-download__guide-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-download__benefits-section {
  padding: 60px 0;
}

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

.page-download__benefit-card {
  background-color: #FFFFFF; /* Card B G */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
}

.page-download__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-download__benefit-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-download__benefit-text {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-download__faq-section {
  padding: 40px 0 60px;
  background-color: #F4F7FB; /* Background */
}

.page-download__faq-item {
  background-color: #FFFFFF; /* Card B G */
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

.page-download__faq-question {
  font-size: 1.2em;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-download__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-download__hero-section {
    padding: 30px 15px 40px;
  }

  .page-download__main-title {
    font-size: 2em; /* Smaller H1 for mobile */
    line-height: 1.3;
  }

  .page-download__description {
    font-size: 1em;
  }

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

  .page-download__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on small screens */
  }

  .page-download__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-download__platform-grid,
  .page-download__guide-grid,
  .page-download__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Ensure content area images do not overflow on mobile */
  .page-download__hero-image,
  .page-download__qr-code,
  .page-download__benefit-image {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure images within .page-download adhere to min-size and no filter */
.page-download img {
  filter: none; /* No CSS filter allowed */
}

/* For specific elements, ensure their HTML width/height are respected */
/* and CSS does not shrink them below 200px if they are content images */
.page-download__qr-code {
    /* HTML width/height is 200x200, max-width 200px is compliant */
    width: auto; /* Allow natural width based on max-width */
    height: auto; /* Allow natural height based on max-width */
}