.page-download__hero-section {
  position: relative;
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px);
}

.page-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-download__hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-download__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFF00; /* Register/Login Font Color */
}

.page-download__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.page-download__btn-primary,
.page-download__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-download__btn-primary {
  background-color: #C30808; /* Register/Login Color */
  color: #FFFF00; /* Register/Login Font Color */
  border: 2px solid #C30808;
}

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

.page-download__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-download__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #005a2e;
}

.page-download__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-download__section-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-download__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Why Download Section */
.page-download__why-download-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #333333;
}

.page-download__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-download__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-download__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

/* How to Download Section */
.page-download__how-to-download-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
}

.page-download__how-to-download-section .page-download__section-title {
  color: #ffffff;
}

.page-download__how-to-download-section .page-download__section-description {
  color: #f0f0f0;
}

.page-download__download-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 50px;
}

.page-download__download-platform {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

.page-download__platform-title {
  font-size: 1.8em;
  margin-bottom: 25px;
  color: #FFFF00; /* Register/Login Font Color */
  font-weight: bold;
}

.page-download__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-download__step-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.page-download__step-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFFF00; /* Register/Login Font Color */
  font-weight: bold;
}

.page-download__qr-code-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-download__qr-code-image {
  max-width: 250px;
  height: auto;
  border: 5px solid #ffffff;
  border-radius: 10px;
  display: block;
}

.page-download__btn-block {
  width: 80%;
  max-width: 250px;
}

.page-download__note {
  text-align: center;
  margin-top: 50px;
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Game Features Section */
.page-download__game-features-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #333333;
}

.page-download__image-text-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-download__image-text-content {
  flex: 1;
}

.page-download__image-text-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-download__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-download__feature-heading {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download__feature-paragraph {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-download__promotions-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
}

.page-download__promotions-section .page-download__section-title {
  color: #ffffff;
}

.page-download__promotions-section .page-download__section-description {
  color: #f0f0f0;
}

.page-download__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download__promotion-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-download__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-download__promotion-title {
  font-size: 1.5em;
  color: #FFFF00; /* Register/Login Font Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download__promotion-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-download__promotions-banner-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-download__promotions-banner {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

/* Security Section */
.page-download__security-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #333333;
}

.page-download__security-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-download__security-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-download__security-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-download__security-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.page-download__security-list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #555555;
}

.page-download__security-list li::before {
  content: '🛡️'; /* Shield emoji */
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0;
}

.page-download__security-footer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
}

/* Testimonials Section */
.page-download__testimonials-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
}

.page-download__testimonials-section .page-download__section-title {
  color: #ffffff;
}

.page-download__testimonials-section .page-download__section-description {
  color: #f0f0f0;
}

.page-download__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download__testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download__testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFFF00; /* Register/Login Font Color */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-download__testimonial-quote {
  font-style: italic;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-download__testimonial-author {
  font-weight: bold;
  color: #FFFF00; /* Register/Login Font Color */
  font-size: 0.95em;
}

/* FAQ Section */
.page-download__faq-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #333333;
}

.page-download__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-download__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-download__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #e0f2f1; /* Light green for contrast */
  border-bottom: 1px solid #d0e0df;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-download__faq-question::-webkit-details-marker {
  display: none;
}

.page-download__faq-question:hover {
  background-color: #c9e6e4;
}

.page-download__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #017439;
  margin-left: 15px;
}

.page-download__faq-item[open] .page-download__faq-toggle {
  content: '−';
}

.page-download__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  background-color: #ffffff;
}

/* Final CTA Section */
.page-download__cta-final-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-download__cta-final-section .page-download__section-title {
  color: #ffffff;
}

.page-download__cta-final-section .page-download__section-description {
  color: #f0f0f0;
}

.page-download__cta-final-section .page-download__cta-buttons {
  justify-content: center;
  margin-top: 40px;
}

.page-download__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-download__hero-section .page-download__container {
    flex-direction: column;
  }
}}