/* style/download-center-system-requirements.css */
.page-download-center-system-requirements {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-download-center-system-requirements__container--centered {
  text-align: center;
}

.page-download-center-system-requirements__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%); /* Gold to Dark Blue gradient */
  color: #ffffff; /* White text for dark background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-system-requirements__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-download-center-system-requirements__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(45deg);
}

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

.page-download-center-system-requirements__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.page-download-center-system-requirements__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-download-center-system-requirements__btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-download-center-system-requirements__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-download-center-system-requirements__section:last-of-type {
  border-bottom: none;
}

.page-download-center-system-requirements__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-download-center-system-requirements__sub-title {
  font-size: 1.8em;
  color: #000080;
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-download-center-system-requirements__content-block {
  margin-bottom: 30px;
}

.page-download-center-system-requirements__list,
.page-download-center-system-requirements__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-download-center-system-requirements__ordered-list {
  list-style-type: decimal;
}

.page-download-center-system-requirements__list li,
.page-download-center-system-requirements__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-download-center-system-requirements__table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.page-download-center-system-requirements__table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-system-requirements__table th,
.page-download-center-system-requirements__table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  color: #333;
}

.page-download-center-system-requirements__table th {
  background-color: #000080; /* Dark blue header */
  color: #FFD700; /* Gold text */
  font-weight: bold;
  text-transform: uppercase;
}

.page-download-center-system-requirements__table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.page-download-center-system-requirements__table tbody tr:hover {
  background-color: #e9e9e9;
}

.page-download-center-system-requirements__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-download-center-system-requirements__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-system-requirements__image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

.page-download-center-system-requirements__image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

.page-download-center-system-requirements__section--mobile .page-download-center-system-requirements__content-block {
  overflow: hidden; /* Clear floats */
  margin-bottom: 20px;
}

.page-download-center-system-requirements__note {
  font-style: italic;
  color: #666;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

.page-download-center-system-requirements__link {
  color: #000080; /* Dark blue link */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-download-center-system-requirements__link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-download-center-system-requirements__btn-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-center-system-requirements__btn-secondary {
  display: inline-block;
  background-color: #000080; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700; /* Gold border */
  cursor: pointer;
}

.page-download-center-system-requirements__btn-secondary:hover {
  background-color: #000066; /* Slightly darker blue on hover */
  transform: translateY(-3px);
}

.page-download-center-system-requirements__section--why-important,
.page-download-center-system-requirements__section--network {
  background-color: #f2f2f2;
}

.page-download-center-system-requirements__section--cta {
  background-color: #000080;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-system-requirements__section--cta .page-download-center-system-requirements__section-title {
  color: #FFD700; /* Gold for CTA title */
}

.page-download-center-system-requirements__section--cta p {
  font-size: 1.2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-download-center-system-requirements .highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-system-requirements__title {
    font-size: 2.5em;
  }
  .page-download-center-system-requirements__section-title {
    font-size: 2em;
  }
  .page-download-center-system-requirements__sub-title {
    font-size: 1.5em;
  }
  .page-download-center-system-requirements__image--left,
  .page-download-center-system-requirements__image--right {
    float: none;
    margin: 20px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-download-center-system-requirements__hero-section {
    padding: 60px 0;
  }
  .page-download-center-system-requirements__title {
    font-size: 2em;
  }
  .page-download-center-system-requirements__subtitle {
    font-size: 1em;
  }
  .page-download-center-system-requirements__btn-primary,
  .page-download-center-system-requirements__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-system-requirements__section {
    padding: 40px 0;
  }
  .page-download-center-system-requirements__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-download-center-system-requirements__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-download-center-system-requirements__list,
  .page-download-center-system-requirements__ordered-list {
    margin-left: 15px;
  }
  .page-download-center-system-requirements__list li,
  .page-download-center-system-requirements__ordered-list li {
    font-size: 1em;
  }
  .page-download-center-system-requirements__btn-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-download-center-system-requirements__title {
    font-size: 1.8em;
  }
  .page-download-center-system-requirements__section-title {
    font-size: 1.5em;
  }
  .page-download-center-system-requirements__table th,
  .page-download-center-system-requirements__table td {
    padding: 10px;
    font-size: 0.9em;
  }
  .page-download-center-system-requirements__btn-primary,
  .page-download-center-system-requirements__btn-secondary {
    width: 90%;
    box-sizing: border-box;
  }
  .page-download-center-system-requirements__image--left,
  .page-download-center-system-requirements__image--right {
    max-width: 95%;
  }
}