.page-download {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color, #FFFFFF);
}

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

.page-download__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #26A9E0, #3498db);
  color: #FFFFFF;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
}

.page-download__hero-content {
  z-index: 2;
  max-width: 800px;
}

.page-download__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f8ff;
}

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

.page-download__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Adjust based on hero section width */
  margin-top: 40px;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

.page-download__section {
  padding: 60px 0;
}

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

.page-download__dark-section .page-download__section-title,
.page-download__dark-section .page-download__section-description,
.page-download__dark-section .page-download__guide-subtitle,
.page-download__dark-section .page-download__guide-list li,
.page-download__dark-section .page-download__guide-list li p,
.page-download__dark-section .page-download__text-block {
  color: #FFFFFF;
}