.page-download {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Rely on body background */
}

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

/* Hero Section */
.page-download__hero-section {
  display: flex;
  flex-direction: column; /* Default column for mobile, will change for desktop */
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  background-color: #0A4B2C; /* Deep Green for hero section background */
  overflow: hidden;
  position: relative;
}

.page-download__hero-content-wrapper {
  z-index: 1;
  position: relative;
  max-width: 800px;
}

.page-download__main-title {
  font-size: 2.5em; /* Adjusted for clamp later if needed */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-download__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-download__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-download__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-download__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  max-width: 500px; /* Limit button group width */
  box-sizing: border-box;
}

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

.page-download__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-download__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-download__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter green for text */
  border: 2px solid #2AD16F; /* Border color */
  box-shadow: none;
}

.page-download__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

/* General Section Styling */
.page-download__introduction-section,
.page-download__download-guide-section,
.page-download__features-section,
.page-download__benefits-section,
.page-download__faq-section,
.page-download__cta-bottom-section {
  padding: 60px 0;
}

.page-download__section-title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
}

.page-download__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Download Guide */
.page-download__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download__step-card {
  background-color: #11271B; /* Card BG */
  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: #F2FFF6; /* Text Main */
}

.page-download__step-card:hover {
  transform: translateY(-5px);
}

.page-download__step-icon {
  width: 100%; /* Responsive image */
  max-width: 250px; /* Max size for icon */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-download__step-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-download__step-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

/* Features Section */
.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: #11271B; /* Card BG */
  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: #F2FFF6; /* Text Main */
}

.page-download__feature-card:hover {
  transform: translateY(-5px);
}

.page-download__feature-icon {
  width: 100%; /* Responsive image */
  max-width: 300px; /* Max size for icon */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-download__feature-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-download__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

/* Benefits Section */
.page-download__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download__benefit-list li {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F; /* Primary color accent */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
  line-height: 1.6;
}

.page-download__benefit-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-download__benefit-list li strong {
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-download__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-download__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  background-color: #1A3125; /* Slightly lighter dark green */
}

.page-download__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-download__faq-item summary:hover {
  background-color: #1E3A2A; /* Divider color for hover */
}

.page-download__faq-qtext {
  flex-grow: 1;
}

.page-download__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Primary color */
}

.page-download__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Bottom Section */
.page-download__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

.page-download__cta-bottom-section .page-download__container {
  background-color: #0A4B2C; /* Deep Green */
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-download__cta-bottom-section .page-download__section-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
}

.page-download__cta-bottom-section .page-download__text-block {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-download__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 80px 20px;
  }

  .page-download__hero-content-wrapper {
    flex: 1;
    padding-right: 40px;
  }

  .page-download__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
    max-width: 50%;
  }

  .page-download__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Desktop title size */
    margin-top: 0;
  }

  .page-download__cta-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .page-download__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding */
  }

  .page-download__main-title {
    font-size: 2em;
    margin-top: 0;
  }

  .page-download__hero-description {
    font-size: 1em;
  }

  .page-download__section-title {
    font-size: 1.8em;
  }

  .page-download__text-block {
    font-size: 0.95em;
  }

  /* Images */
  .page-download img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Image containers */
  .page-download__section,
  .page-download__card,
  .page-download__container,
  .page-download__hero-section,
  .page-download__download-guide-section,
  .page-download__features-section,
  .page-download__benefits-section,
  .page-download__faq-section,
  .page-download__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Buttons */
  .page-download__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px; /* Add padding to button container */
  }

  .page-download__btn-primary,
  .page-download__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  /* FAQ */
  .page-download__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-download__faq-answer {
    padding: 0 20px 15px 20px;
  }
}