/* style/download.css */
.page-download {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Assuming body background is black from shared.css */
}

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

.page-download__heading {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-download__sub-heading {
  font-size: 28px;
  font-weight: 600;
  color: #FFD700; /* Gold for sub-headings */
  margin-top: 35px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
}

.page-download__description,
.page-download__text {
  font-size: 18px;
  line-height: 1.7;
  color: #f0f0f0; /* Light grey for body text on dark backgrounds */
  text-align: center;
  margin-bottom: 25px;
}

.page-download__list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
}

.page-download__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.6;
  color: #ffffff;
  border-left: 4px solid #FFD700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-download__list--ordered {
  list-style: decimal;
  padding-left: 20px;
}

.page-download__list--ordered .page-download__list-item {
  background-color: transparent;
  border-left: none;
  box-shadow: none;
  padding: 10px 0;
  margin-bottom: 5px;
  color: #f0f0f0;
}

.page-download__list--ordered .page-download__list-item strong {
  color: #FFD700;
}

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

.page-download__btn-primary {
  background-color: #FFD700;
  color: #1A237E;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-download__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-download__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-download__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* HERO Section */
.page-download__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--header-offset, 120px);
  margin-top: 0;
  background-color: #1A237E; /* Fallback for background in case image fails */
}

.page-download__hero-container {
  position: relative;
  margin: 0 auto;
}

.page-download__hero-image {
  width: 100%;
  margin: 0;
}

.page-download__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Products Section */
.page-download__products-section {
  width: 100%;
  padding: 60px 20px;
  background: #1A237E; /* Dark blue background for contrast */
  box-sizing: border-box;
}

.page-download__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 20px;
}

.page-download__products-grid {
  display: grid;
  gap: 20px;
}

.page-download__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-download__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}