/* style/download-center-pc-client.css */
.page-download-center-pc-client {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-download-center-pc-client__hero-section {
  background: linear-gradient(135deg, #003366 0%, #0a4f94 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-download-center-pc-client__hero-content {
  max-width: 700px;
  margin-right: 40px;
  text-align: left;
}

.page-download-center-pc-client__hero-image-wrapper {
  flex-shrink: 0;
}

.page-download-center-pc-client__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Contrast with dark blue background */
  line-height: 1.2;
}

.page-download-center-pc-client__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0; /* Good contrast */
}

.page-download-center-pc-client__download-btn {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__download-btn:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-download-center-pc-client__download-btn--large {
  padding: 18px 50px;
  font-size: 1.4em;
}

.page-download-center-pc-client__small-text {
  font-size: 0.9em;
  margin-top: 15px;
  color: #ccc;
}

.page-download-center-pc-client__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-download-center-pc-client__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-pc-client__benefits-section,
.page-download-center-pc-client__guide-section,
.page-download-center-pc-client__requirements-section,
.page-download-center-pc-client__features-section,
.page-download-center-pc-client__promo-section,
.page-download-center-pc-client__faq-section,
.page-download-center-pc-client__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-download-center-pc-client__benefit-item,
.page-download-center-pc-client__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f4f7f9;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-download-center-pc-client__benefit-item:hover,
.page-download-center-pc-client__feature-item:hover {
  transform: translateY(-5px);
}

.page-download-center-pc-client__benefit-icon,
.page-download-center-pc-client__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 51, 102, 0.2));
}

.page-download-center-pc-client__benefit-title,
.page-download-center-pc-client__feature-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-download-center-pc-client__benefit-description,
.page-download-center-pc-client__feature-description {
  font-size: 1em;
  color: #666;
}

.page-download-center-pc-client__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-download-center-pc-client__step-item {
  background-color: #f4f7f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-download-center-pc-client__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFCC00;
  color: #003366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 3px 10px rgba(255, 204, 0, 0.4);
}

.page-download-center-pc-client__step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-download-center-pc-client__step-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-download-center-pc-client__step-description a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-download-center-pc-client__step-description a:hover {
  color: #FFCC00;
}

.page-download-center-pc-client__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__requirements-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 20px auto;
  max-width: 700px;
  background-color: #f4f7f9;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-download-center-pc-client__requirements-list li {
  padding: 15px 25px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.page-download-center-pc-client__requirements-list li:last-child {
  border-bottom: none;
}

.page-download-center-pc-client__requirements-list li strong {
  color: #003366;
  margin-right: 10px;
  flex-shrink: 0;
  min-width: 150px;
}

.page-download-center-pc-client__note {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 20px;
  font-size: 0.95em;
}

.page-download-center-pc-client__promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-download-center-pc-client__promo-image {
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-pc-client__promo-text {
  max-width: 700px;
  font-size: 1.1em;
  color: #333;
}

.page-download-center-pc-client__promo-text p {
  margin-bottom: 25px;
}

.page-download-center-pc-client__promo-btn {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__promo-btn:hover {
  background-color: #001a33;
  transform: translateY(-3px);
}

.page-download-center-pc-client__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-download-center-pc-client__faq-item {
  background-color: #f4f7f9;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-pc-client__faq-question {
  font-size: 1.25em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center-pc-client__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFCC00;
  font-weight: bold;
}

.page-download-center-pc-client__faq-question.active::after {
  content: '-';
}

.page-download-center-pc-client__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-download-center-pc-client__faq-answer.active {
  display: block;
}

.page-download-center-pc-client__cta-section {
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__section-title {
  color: #FFCC00;
  padding-top: 0;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__section-subtitle {
  color: #e0e0e0;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__small-text {
  color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-pc-client__hero-section {
    flex-direction: column;
    padding: 60px 0;
  }

  .page-download-center-pc-client__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .page-download-center-pc-client__hero-image {
    max-width: 90%;
  }

  .page-download-center-pc-client__hero-title {
    font-size: 2.5em;
  }

  .page-download-center-pc-client__hero-description {
    font-size: 1.1em;
  }

  .page-download-center-pc-client__section-title {
    font-size: 2em;
  }

  .page-download-center-pc-client__benefits-grid,
  .page-download-center-pc-client__features-grid,
  .page-download-center-pc-client__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-download-center-pc-client__requirements-list li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .page-download-center-pc-client__requirements-list li strong {
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .page-download-center-pc-client__hero-section {
    padding: 40px 0;
  }

  .page-download-center-pc-client__hero-title {
    font-size: 2em;
  }

  .page-download-center-pc-client__download-btn {
    font-size: 1.1em;
    padding: 12px 30px;
  }

  .page-download-center-pc-client__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-download-center-pc-client__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-download-center-pc-client__benefits-section,
  .page-download-center-pc-client__guide-section,
  .page-download-center-pc-client__requirements-section,
  .page-download-center-pc-client__features-section,
  .page-download-center-pc-client__promo-section,
  .page-download-center-pc-client__faq-section,
  .page-download-center-pc-client__cta-section {
    padding: 40px 0;
  }

  .page-download-center-pc-client__promo-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-download-center-pc-client__hero-title {
    font-size: 1.8em;
  }

  .page-download-center-pc-client__hero-description {
    font-size: 0.95em;
  }

  .page-download-center-pc-client__download-btn {
    font-size: 1em;
    padding: 10px 25px;
  }

  .page-download-center-pc-client__section-title {
    font-size: 1.5em;
  }

  .page-download-center-pc-client__benefits-grid,
  .page-download-center-pc-client__features-grid,
  .page-download-center-pc-client__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-download-center-pc-client__promo-btn {
    font-size: 1em;
    padding: 10px 25px;
  }

  .page-download-center-pc-client__faq-question {
    font-size: 1.1em;
  }

  .page-download-center-pc-client__faq-answer {
    font-size: 0.95em;
  }
}