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

.page-download__hero-section {
  position: relative;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
}

.page-download__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-download__hero-content {
  padding: 30px 40px;
  text-align: center;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
}

.page-download__hero-title {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download__hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #d6d604 0%, #a5a503 100%); /* Yellow-green accent */
  color: #1F2D3D;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-download__hero-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-download__options-section,
.page-download__guide-section,
.page-download__requirements-section,
.page-download__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.page-download__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
}

.page-download__cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-download__option-card {
  flex: 1 1 45%; /* Allow cards to grow but not exceed 45% for two columns */
  max-width: 500px;
  background-color: #F4F7FB;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  min-width: 280px; /* Ensure cards don't get too small */
}

.page-download__option-card:hover {
  transform: translateY(-5px);
}

.page-download__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-download__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-download__card-text {
  font-size: 1rem;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-download__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-download__card-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-download__step-item {
  background-color: #F4F7FB;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.page-download__step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 35px;
  height: 35px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.page-download__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 8px;
}

.page-download__step-text {
  font-size: 1rem;
  color: #1F2D3D;
}

.page-download__guide-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  min-height: 200px;
}

.page-download__requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.page-download__requirements-item {
  background-color: #F4F7FB;
  padding: 15px 20px;
  border-left: 4px solid #2F6BFF;
  border-radius: 6px;
  font-size: 1rem;
  color: #1F2D3D;
}

.page-download__faq-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D6E2FF;
}

.page-download__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-download__faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-download__faq-answer {
  font-size: 1rem;
  color: #1F2D3D;
  padding-left: 15px;
}

.page-download__faq-question a,
.page-download__step-text a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
}

.page-download__faq-question a:hover,
.page-download__step-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-download__hero-section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-download__hero-content {
    padding: 20px;
  }

  .page-download__hero-title {
    font-size: 2rem;
  }

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

  .page-download__hero-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-download__options-section,
  .page-download__guide-section,
  .page-download__requirements-section,
  .page-download__faq-section {
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
  }

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

  .page-download__option-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .page-download__requirements-list {
    grid-template-columns: 1fr;
  }

  .page-download__card-image,
  .page-download__guide-image {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-download img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Enforce minimum size even on mobile for content images */
    min-height: 200px !important;
  }
}