.page-faq-technical-requirements-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq-technical-requirements-hero {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-faq-technical-requirements-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF; /* Ensure contrast on gradient background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-technical-requirements-hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-faq-technical-requirements-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-faq-technical-requirements-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-faq-technical-requirements-button--primary {
  background-color: #FFD700;
  color: #000080;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-technical-requirements-button--primary:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

.page-faq-technical-requirements-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-faq-technical-requirements-button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-faq-technical-requirements-section {
  padding: 80px 0;
}

.page-faq-technical-requirements-section--alt-bg {
  background-color: #F8F8F8;
}

.page-faq-technical-requirements-section-title {
  font-size: 2.8em;
  color: #000080;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-faq-technical-requirements-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-faq-technical-requirements-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-faq-technical-requirements-content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-faq-technical-requirements-text-content {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333333;
}

.page-faq-technical-requirements-text-content p {
  margin-bottom: 15px;
}

.page-faq-technical-requirements-text-content strong {
  color: #000080;
}

.page-faq-technical-requirements-image-content {
  flex: 1;
  text-align: center;
}

.page-faq-technical-requirements-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-faq-technical-requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-faq-technical-requirements-grid-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-top: 5px solid #FFD700;
}

.page-faq-technical-requirements-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-faq-technical-requirements-item-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
}

.page-faq-technical-requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-faq-technical-requirements-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444444;
  font-size: 1.05em;
}

.page-faq-technical-requirements-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-faq-technical-requirements-cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-faq-technical-requirements-support-text {
  text-align: center;
  font-size: 1.1em;
  color: #333333;
  margin-top: 40px;
}

.page-faq-technical-requirements-section--conclusion {
  background-color: #000080;
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-faq-technical-requirements-section--conclusion .page-faq-technical-requirements-section-title {
  color: #FFD700;
}

.page-faq-technical-requirements-section--conclusion .page-faq-technical-requirements-section-title::after {
  background-color: #FFFFFF;
}

.page-faq-technical-requirements-section--conclusion p {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-faq-technical-requirements-section--conclusion .page-faq-technical-requirements-button--primary {
  background-color: #FFD700;
  color: #000080;
}

.page-faq-technical-requirements-section--conclusion .page-faq-technical-requirements-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-technical-requirements-hero-title {
    font-size: 2.8em;
  }

  .page-faq-technical-requirements-hero-subtitle {
    font-size: 1.2em;
  }

  .page-faq-technical-requirements-section-title {
    font-size: 2.2em;
  }

  .page-faq-technical-requirements-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-faq-technical-requirements-content-wrapper--reverse {
    flex-direction: column;
  }

  .page-faq-technical-requirements-text-content, .page-faq-technical-requirements-image-content {
    flex: none;
    width: 100%;
  }

  .page-faq-technical-requirements-image {
    max-width: 80%;
  }

  .page-faq-technical-requirements-grid {
    grid-template-columns: 1fr;
  }

  .page-faq-technical-requirements-grid-item {
    text-align: center;
  }

  .page-faq-technical-requirements-list li {
    text-align: left;
  }

  .page-faq-technical-requirements-hero-cta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .page-faq-technical-requirements-hero {
    padding: 60px 0;
  }

  .page-faq-technical-requirements-hero-title {
    font-size: 2em;
  }

  .page-faq-technical-requirements-hero-subtitle {
    font-size: 1em;
  }

  .page-faq-technical-requirements-section {
    padding: 50px 0;
  }

  .page-faq-technical-requirements-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-faq-technical-requirements-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
  }

  .page-faq-technical-requirements-text-content {
    font-size: 1em;
  }

  .page-faq-technical-requirements-item-title {
    font-size: 1.5em;
  }

  .page-faq-technical-requirements-image {
    max-width: 95%;
  }
}