.page-download {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from shared, but for safety */
}

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

.page-download__dark-section {
  background-color: #0a0a0a; /* Ensure dark background for sections */
  color: #ffffff;
}

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

.page-download__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjust as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

.page-download__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin-top: 40px;
  object-fit: cover;
  border-radius: 8px;
}

.page-download__main-title {
  font-size: 3.2em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download__section {
  padding: 80px 0;
  text-align: center;
}

.page-download__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.page-download__text-link {
  color: #EA7C07; /* Login color for links */
  text-decoration: underline;
}

.page-download__text-link:hover {
  color: #ff9933;
  text-decoration: none;
}

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