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

.page-download__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 30px;
}

.page-download__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #FFFFFF; /* Ensure high contrast */
}

.page-download__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f8ff; /* Slightly off-white for readability */
}

.page-download__hero-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
  z-index: 0;
}

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

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

.page-download__btn-primary,
.page-download__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

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

.page-download__intro-section,
.page-download__guide-section,
.page-download__security-section,
.page-download__conclusion-section {
  padding: 80px 0;
}

.page-download__benefits-section,
.page-download__features-section,
.page-download__faq-section {
  padding: 80px 0;
}

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

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

.page-download__dark-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}