/* style/download.css */

.page-download {
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header offset to prevent content from being hidden by fixed header */
.page-download__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  background-color: #1a1a1a; /* A slightly lighter dark background for the hero */
  padding-bottom: 60px;
}

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

.page-download__hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.page-download__hero-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-download__download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-download__btn-primary,
.page-download__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
}

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

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

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

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

.page-download__hero-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

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

.page-download__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Benefits Section */
.page-download__benefits-section {
  background-color: #121212;
  padding: 80px 0;
}

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

.page-download__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-download__benefit-card:hover {
  transform: translateY(-10px);
}

.page-download__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-download__benefit-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* How to Download Section */
.page-download__how-to-download-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-download__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-download__step-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 20px;
  text-align: center;
}

.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: 1em;
  color: #e0e0e0;
  position: relative;
  padding-left: 25px;
}

.page-download__step-list li strong {
  color: #ffffff;
}

.page-download__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Features Section */
.page-download__features-section {
  background-color: #121212;
  padding: 80px 0;
}

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

.page-download__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-download__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  min-width: 200px;
  min-height: 200px;
}

.page-download__feature-card-content {
  padding: 25px;
  flex-grow: 1;
}

.page-download__feature-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
  text-align: left;
}

.page-download__feature-text {
  font-size: 1em;
  color: #e0e0e0;
  text-align: left;
}

/* Video Section */
.page-download__video-section {
  background-color: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}

.page-download__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-download__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-download__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-download__faq-section {
  background-color: #121212;
  padding: 80px 0;
}

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

.page-download__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-download__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #ffffff;
  list-style: none;
}

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

.page-download__faq-question {
  flex-grow: 1;
  color: #017439;
}