/* style/app-download-system-requirements.css */
.page-app-download-system-requirements {
  font-family: 'Arial', sans-serif;
  color: #e5d1bb; /* Light text for dark background */
  line-height: 1.6;
  background-color: #1A2E44; /* Main dark background */
}

.page-app-download-system-requirements__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-app-download-system-requirements__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c80 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700; /* Gold text for contrast */
}

.page-app-download-system-requirements__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 600px;
  opacity: 0.3;
  z-index: 0;
}

.page-app-download-system-requirements__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-app-download-system-requirements__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e5d1bb; /* Light text */
  position: relative;
  z-index: 1;
}

.page-app-download-system-requirements__section {
  padding: 60px 0;
  text-align: center;
}

.page-app-download-system-requirements__section--alt-bg {
  background-color: #2a445c; /* Slightly lighter dark blue */
}

.page-app-download-system-requirements__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold title */
  font-weight: bold;
}

.page-app-download-system-requirements__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e5d1bb; /* Light text */
}

.page-app-download-system-requirements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-app-download-system-requirements__grid-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a5c80;
}

.page-app-download-system-requirements__grid-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-app-download-system-requirements__grid-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold title */
  font-weight: bold;
}

.page-app-download-system-requirements__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-app-download-system-requirements__list li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #e5d1bb; /* Light text */
}

.page-app-download-system-requirements__list li strong {
  color: #FFD700; /* Gold for strong text */
}

.page-app-download-system-requirements__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-app-download-system-requirements__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A2E44; /* Dark blue text */
}

.page-app-download-system-requirements__btn--primary:hover {
  background-color: #e0b800; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-app-download-system-requirements__btn--secondary {
  background-color: #1A2E44; /* Dark blue background */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-app-download-system-requirements__btn--secondary:hover {
  background-color: #3a5c80; /* Lighter dark blue on hover */
  border-color: #e0b800;
  transform: translateY(-2px);
}

.page-app-download-system-requirements__cta-block {
  background-color: #3a5c80; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-app-download-system-requirements__cta-text {
  font-size: 1.2em;
  color: #e5d1bb; /* Light text */
  margin: 0;
}

.page-app-download-system-requirements__checklist {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-app-download-system-requirements__checklist li {
  background-color: #1A2E44;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 1.1em;
  color: #e5d1bb; /* Light text */
  border-left: 5px solid #FFD700;
}

.page-app-download-system-requirements__icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-app-download-system-requirements__faq-item {
  background-color: #2a445c;
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-system-requirements__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold question */
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-app-download-system-requirements__faq-answer {
  font-size: 1em;
  color: #e5d1bb; /* Light text */
  display: block;
}

.page-app-download-system-requirements__section--final-cta {
  background: linear-gradient(135deg, #1A2E44 0%, #000000 100%); /* Dark gradient */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.page-app-download-system-requirements__final-cta-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-app-download-system-requirements__final-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-app-download-system-requirements__final-cta-text {
  font-size: 1.2em;
  color: #e5d1bb;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-app-download-system-requirements__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-app-download-system-requirements__hero-title {
    font-size: 2.5em;
  }
  .page-app-download-system-requirements__hero-subtitle {
    font-size: 1.1em;
  }
  .page-app-download-system-requirements__section-title {
    font-size: 2em;
  }
  .page-app-download-system-requirements__grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-system-requirements__text-content,
  .page-app-download-system-requirements__list li,
  .page-app-download-system-requirements__faq-answer {
    font-size: 0.95em;
  }
  .page-app-download-system-requirements__final-cta-title {
    font-size: 2.2em;
  }
  .page-app-download-system-requirements__final-cta-text {
    font-size: 1em;
  }
  .page-app-download-system-requirements__hero-image {
    width: 80%;
    right: -20%;
  }
}

@media (max-width: 480px) {
  .page-app-download-system-requirements__hero {
    padding: 60px 0;
  }
  .page-app-download-system-requirements__hero-title {
    font-size: 2em;
  }
  .page-app-download-system-requirements__hero-subtitle {
    font-size: 1em;
  }
  .page-app-download-system-requirements__section {
    padding: 40px 0;
  }
  .page-app-download-system-requirements__section-title {
    font-size: 1.8em;
  }
  .page-app-download-system-requirements__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-system-requirements__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-app-download-system-requirements__cta-block {
    padding: 20px;
  }
  .page-app-download-system-requirements__checklist li {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-app-download-system-requirements__icon {
    font-size: 1.2em;
    margin-right: 10px;
  }
  .page-app-download-system-requirements__faq-question {
    font-size: 1.2em;
  }
  .page-app-download-system-requirements__final-cta-title {
    font-size: 1.8em;
  }
  .page-app-download-system-requirements__final-cta-text {
    font-size: 0.9em;
  }
  .page-app-download-system-requirements__hero-image {
    display: none; /* Hide hero image on very small screens */
  }
}