/* style/app-download-system-requirements.css */
.page-app-download-system-requirements {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0d1a2e; /* Darker variant of main color for overall background */
}

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

.page-app-download-system-requirements__hero {
  background: linear-gradient(135deg, #1A2E4C, #0d1a2e);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-system-requirements__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-app-download-system-requirements__subtitle {
  font-size: 1.3em;
  color: #D0D0D0; /* Lighter gray for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-system-requirements__brand-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-app-download-system-requirements__brand-link:hover {
  text-decoration: underline;
}

.page-app-download-system-requirements__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-app-download-system-requirements__section {
  padding: 60px 0;
  background-color: #1A2E4C; /* Main dark blue for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-app-download-system-requirements__section--alt-bg {
  background-color: #0d1a2e; /* Slightly darker background for alternating sections */
}

.page-app-download-system-requirements__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-app-download-system-requirements__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-app-download-system-requirements__list li {
  background-color: #2a3c58; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.05em;
  color: #F0F0F0;
}

.page-app-download-system-requirements__list-item-strong {
  color: #FFD700;
}

.page-app-download-system-requirements__sub-list {
  list-style: disc;
  margin-left: 30px;
  margin-top: 10px;
  color: #D0D0D0;
}

.page-app-download-system-requirements__sub-list li {
  background-color: transparent;
  border-left: none;
  padding: 5px 0;
  margin-bottom: 5px;
  color: #D0D0D0;
}

.page-app-download-system-requirements__os-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-app-download-system-requirements__os-card {
  background-color: #2a3c58;
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 calc(50% - 30px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
}

.page-app-download-system-requirements__os-card-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-app-download-system-requirements__os-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.page-app-download-system-requirements__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-app-download-system-requirements__image-centered {
  display: block;
  margin: 40px auto;
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-app-download-system-requirements__hardware-card {
  background-color: #2a3c58;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-app-download-system-requirements__hardware-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-app-download-system-requirements__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin-bottom: 20px;
}

.page-app-download-system-requirements__numbered-list li {
  counter-increment: item;
  background-color: #2a3c58;
  margin-bottom: 15px;
  padding: 20px 20px 20px 60px;
  border-radius: 8px;
  position: relative;
  font-size: 1.05em;
  color: #F0F0F0;
}

.page-app-download-system-requirements__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2E4C;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-app-download-system-requirements__benefits-grid li {
  margin-bottom: 0; /* Override default list margin */
}

.page-app-download-system-requirements__link-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E4C; /* Dark text on gold button */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

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

.page-app-download-system-requirements__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-app-download-system-requirements__download-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E4C; /* Dark text on gold button */
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-system-requirements__download-button:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-app-download-system-requirements__title {
    font-size: 2.5em;
  }
  .page-app-download-system-requirements__section-title {
    font-size: 2em;
  }
  .page-app-download-system-requirements__os-card {
    flex: 1 1 calc(100% - 30px);
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-app-download-system-requirements__hero {
    padding: 60px 0;
  }
  .page-app-download-system-requirements__title {
    font-size: 2em;
  }
  .page-app-download-system-requirements__subtitle {
    font-size: 1.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__text {
    font-size: 1em;
  }
  .page-app-download-system-requirements__os-card {
    padding: 20px;
  }
  .page-app-download-system-requirements__hardware-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-system-requirements__numbered-list li {
    padding: 15px 15px 15px 50px;
  }
  .page-app-download-system-requirements__numbered-list li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-app-download-system-requirements__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-system-requirements__download-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-app-download-system-requirements__container {
    padding: 15px;
  }
  .page-app-download-system-requirements__title {
    font-size: 1.8em;
  }
  .page-app-download-system-requirements__subtitle {
    font-size: 0.95em;
  }
  .page-app-download-system-requirements__list li, .page-app-download-system-requirements__text {
    font-size: 0.95em;
  }
  .page-app-download-system-requirements__section-title {
    font-size: 1.5em;
  }
  .page-app-download-system-requirements__os-card-title, .page-app-download-system-requirements__hardware-card-title {
    font-size: 1.5em;
  }
  .page-app-download-system-requirements__link-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-app-download-system-requirements__download-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}