/* style/app-download-system-requirements.css */

/* General Styles for the page */
.page-app-download-system-requirements {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background, WCAG AA contrast with #0A1931 */
  background-color: #0A1931; /* Primary dark blue background */
  line-height: 1.6;
}

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

.page-app-download-system-requirements__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles, WCAG AA contrast with #0A1931 */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-app-download-system-requirements__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles, WCAG AA contrast with #0A1931 */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-system-requirements__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #B0B0B0; /* Slightly lighter grey for descriptions, WCAG AA contrast with #0A1931 */
}

.page-app-download-system-requirements__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-app-download-system-requirements__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A1931; /* Dark blue text, WCAG AA contrast with #FFD700 */
  border: 2px solid #FFD700;
}

.page-app-download-system-requirements__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #000; /* Black text for even better contrast */
}

.page-app-download-system-requirements__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text, WCAG AA contrast with #0A1931 */
  border: 2px solid #FFD700;
}

.page-app-download-system-requirements__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931; /* Dark blue text, WCAG AA contrast with #FFD700 */
}

.page-app-download-system-requirements__btn--link {
  color: #FFD700;
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
}

.page-app-download-system-requirements__btn--link:hover {
  color: #e6c200;
}

.page-app-download-system-requirements__text-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-app-download-system-requirements__text-link:hover {
  color: #e6c200;
}

/* Hero Section */
.page-app-download-system-requirements__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-system-requirements__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title, WCAG AA contrast with dark background */
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-system-requirements__hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0; /* Light grey, WCAG AA contrast with dark background */
  margin-bottom: 30px;
}

.page-app-download-system-requirements__hero-image {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 400px; /* Adjust size as needed */
  opacity: 0.2;
  z-index: 0;
  transform: rotate(15deg);
  filter: grayscale(100%);
}

/* Benefits Section */
.page-app-download-system-requirements__benefits-section {
  padding: 60px 0;
  background-color: #1A2A44; /* Slightly lighter dark blue, good contrast with text */
}

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

.page-app-download-system-requirements__benefit-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-app-download-system-requirements__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-app-download-system-requirements__benefit-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold, WCAG AA contrast with #0A1931 */
  margin-bottom: 10px;
}

.page-app-download-system-requirements__benefit-text {
  font-size: 1em;
  color: #B0B0B0; /* Light grey, WCAG AA contrast with #0A1931 */
}

/* Requirements Section */
.page-app-download-system-requirements__requirements-section {
  padding: 60px 0;
  background-color: #0A1931;
}

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

.page-app-download-system-requirements__platform-card {
  background-color: #1A2A44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-app-download-system-requirements__platform-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-app-download-system-requirements__platform-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold, WCAG AA contrast with #1A2A44 */
  margin-bottom: 20px;
}

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

.page-app-download-system-requirements__requirement-list li {
  background-color: #0A1931;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  color: #E0E0E0; /* Light grey, WCAG AA contrast with #0A1931 */
  border-left: 3px solid #FFD700;
  font-size: 1em;
}

.page-app-download-system-requirements__requirement-list li strong {
  color: #FFD700; /* Gold, WCAG AA contrast with #0A1931 */
}

.page-app-download-system-requirements__general-requirements {
  margin-top: 60px;
  padding: 30px;
  background-color: #1A2A44;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Download Guide Section */
.page-app-download-system-requirements__download-guide-section {
  padding: 60px 0;
  background-color: #1A2A44;
}

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

.page-app-download-system-requirements__step-card {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-app-download-system-requirements__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-app-download-system-requirements__step-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold, WCAG AA contrast with #0A1931 */
  margin-bottom: 15px;
}

.page-app-download-system-requirements__step-text {
  font-size: 1em;
  color: #E0E0E0; /* Light grey, WCAG AA contrast with #0A1931 */
  margin-bottom: 15px;
}

/* FAQ Section */
.page-app-download-system-requirements__faq-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-app-download-system-requirements__faq-item {
  background-color: #1A2A44;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-app-download-system-requirements__faq-question {
  font-size: 1.2em;
  color: #FFD700; /* Gold, WCAG AA contrast with #1A2A44 */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-app-download-system-requirements__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
  color: #FFD700; /* Gold for icon */
}

.page-app-download-system-requirements__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-app-download-system-requirements__faq-answer {
  font-size: 1em;
  color: #E0E0E0; /* Light grey, WCAG AA contrast with #1A2A44 */
  margin-top: 10px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-app-download-system-requirements__faq-answer.active {
  display: block;
}

/* CTA Section */
.page-app-download-system-requirements__cta-section {
  background: linear-gradient(45deg, #1A2A44, #0A1931);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-system-requirements__cta-section .page-app-download-system-requirements__section-title,
.page-app-download-system-requirements__cta-section .page-app-download-system-requirements__section-description {
  color: #FFD700; /* Gold, WCAG AA contrast with dark background */
}

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

.page-app-download-system-requirements__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-system-requirements__cta-section > .page-app-download-system-requirements__container {
  position: relative;
  z-index: 1;
}

/* 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.2em;
  }

  .page-app-download-system-requirements__section-title {
    font-size: 2em;
  }

  .page-app-download-system-requirements__section-description {
    font-size: 1em;
  }

  .page-app-download-system-requirements__benefits-grid,
  .page-app-download-system-requirements__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-app-download-system-requirements__platform-card {
    max-width: 100%;
  }

  .page-app-download-system-requirements__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-app-download-system-requirements__hero-image {
    display: none; /* Hide on smaller screens */
  }
}

@media (max-width: 480px) {
  .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__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-app-download-system-requirements__section-title {
    font-size: 1.8em;
  }
}