/* style/download-install-system-requirements.css */
.page-download-install-system-requirements {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2A3A; /* Dark blue for main text on light backgrounds */
  background-color: #F8F8F8;
}

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

.page-download-install-system-requirements__hero {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Gold to Orange gradient */
  color: #1A2A3A; /* Dark blue text on gold/orange */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-download-install-system-requirements__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.page-download-install-system-requirements__hero .page-download-install-system-requirements__container {
  position: relative;
  z-index: 1;
}

.page-download-install-system-requirements__title {
  font-size: 2.8em;
  color: #1A2A3A;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-download-install-system-requirements__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-install-system-requirements__button {
  display: inline-block;
  background-color: #1A2A3A; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #1A2A3A;
}

.page-download-install-system-requirements__button:hover {
  background-color: #0d1720; /* Slightly darker blue on hover */
  transform: translateY(-2px);
}

.page-download-install-system-requirements__section {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.page-download-install-system-requirements__section:nth-of-type(odd) {
  background-color: #FDFDFD;
}

.page-download-install-system-requirements__heading {
  font-size: 2em;
  color: #1A2A3A;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-download-install-system-requirements__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-download-install-system-requirements__intro p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

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

.page-download-install-system-requirements__card {
  background-color: #FDFDFD;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-install-system-requirements__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.page-download-install-system-requirements__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold title for cards */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-install-system-requirements__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.page-download-install-system-requirements__list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-download-install-system-requirements__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333;
}

.page-download-install-system-requirements__list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-download-install-system-requirements__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #555;
}

.page-download-install-system-requirements__cta-block {
  text-align: center;
  margin-top: 50px;
}

.page-download-install-system-requirements__button--download {
  background-color: #FFD700; /* Gold button */
  color: #1A2A3A; /* Dark blue text on gold */
  border-color: #FFD700;
  margin-right: 15px;
}

.page-download-install-system-requirements__button--download:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  border-color: #e6c200;
}

.page-download-install-system-requirements__button--register {
  background-color: #1A2A3A; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border-color: #1A2A3A;
}

.page-download-install-system-requirements__button--register:hover {
  background-color: #0d1720; /* Slightly darker blue on hover */
  border-color: #0d1720;
}

.page-download-install-system-requirements__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-download-install-system-requirements__cta-final {
  background-color: #1A2A3A; /* Dark blue background */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-download-install-system-requirements__cta-final .page-download-install-system-requirements__heading {
  color: #FFD700; /* Gold heading on dark blue */
}

.page-download-install-system-requirements__cta-final .page-download-install-system-requirements__heading::after {
  background-color: #FFD700;
}

.page-download-install-system-requirements__cta-final p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-install-system-requirements__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2A3A; /* Dark blue text on gold */
  border-color: #FFD700;
  margin-right: 15px;
}

.page-download-install-system-requirements__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-download-install-system-requirements__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on transparent */
  border-color: #FFD700;
}

.page-download-install-system-requirements__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2A3A;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-download-install-system-requirements__title {
    font-size: 2em;
  }

  .page-download-install-system-requirements__subtitle {
    font-size: 1em;
  }

  .page-download-install-system-requirements__heading {
    font-size: 1.6em;
  }

  .page-download-install-system-requirements__section {
    padding: 40px 0;
  }

  .page-download-install-system-requirements__grid {
    grid-template-columns: 1fr;
  }

  .page-download-install-system-requirements__cta-block .page-download-install-system-requirements__button {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .page-download-install-system-requirements__cta-final .page-download-install-system-requirements__button {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-download-install-system-requirements__title {
    font-size: 1.8em;
  }

  .page-download-install-system-requirements__subtitle {
    font-size: 0.9em;
  }

  .page-download-install-system-requirements__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}