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

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

.page-download-center-pc-client-intro__hero {
  background-color: #003366; /* Deep Sea Blue */
  color: #FFFFFF; /* White text for contrast */
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-download-center-pc-client-intro__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Golden Yellow for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client-intro__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #FFFFFF;
}

.page-download-center-pc-client-intro__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.page-download-center-pc-client-intro__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client-intro__btn--primary {
  background-color: #FFCC00; /* Golden Yellow */
  color: #003366; /* Deep Sea Blue for contrast */
}

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

.page-download-center-pc-client-intro__btn--secondary {
  background-color: #004d99; /* Darker blue for secondary action */
  color: #FFCC00; /* Golden Yellow for contrast */
  border: 2px solid #FFCC00;
}

.page-download-center-pc-client-intro__btn--secondary:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
}

.page-download-center-pc-client-intro__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc-client-intro__section {
  padding: 80px 0;
}

.page-download-center-pc-client-intro__section--why-choose {
  background-color: #f8f8f8;
}

.page-download-center-pc-client-intro__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep Sea Blue */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-download-center-pc-client-intro__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Golden Yellow */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-download-center-pc-client-intro__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-download-center-pc-client-intro__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-download-center-pc-client-intro__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-download-center-pc-client-intro__feature-title {
  font-size: 1.6em;
  color: #003366; /* Deep Sea Blue */
  margin-bottom: 15px;
}

.page-download-center-pc-client-intro__feature-item p {
  color: #555;
  font-size: 1.05em;
}

.page-download-center-pc-client-intro__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client-intro__section--download-guide {
  background-color: #003366; /* Deep Sea Blue */
  color: #FFFFFF;
}

.page-download-center-pc-client-intro__section--download-guide .page-download-center-pc-client-intro__section-title {
  color: #FFCC00; /* Golden Yellow */
}

.page-download-center-pc-client-intro__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-download-center-pc-client-intro__step-item {
  background-color: #004d99; /* Slightly lighter blue */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.page-download-center-pc-client-intro__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFCC00; /* Golden Yellow */
  color: #003366; /* Deep Sea Blue */
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client-intro__step-title {
  font-size: 1.4em;
  color: #FFCC00; /* Golden Yellow */
  margin-bottom: 10px;
}

.page-download-center-pc-client-intro__step-item p {
  color: #e0e0e0;
  font-size: 1em;
}

.page-download-center-pc-client-intro__link-text {
  color: #FFCC00; /* Golden Yellow */
  text-decoration: underline;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-download-center-pc-client-intro__link-text:hover {
  color: #FFFFFF;
}

.page-download-center-pc-client-intro__guide-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 60px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client-intro__section--features {
  background-color: #f0f4f8;
}

.page-download-center-pc-client-intro__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.page-download-center-pc-client-intro__feature-list li {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-download-center-pc-client-intro__feature-list li:hover {
  transform: translateY(-5px);
}

.page-download-center-pc-client-intro__list-title {
  font-size: 1.5em;
  color: #003366; /* Deep Sea Blue */
  margin-bottom: 10px;
}

.page-download-center-pc-client-intro__feature-list p {
  color: #666;
}

.page-download-center-pc-client-intro__section--faq {
  background-color: #FFFFFF;
}

.page-download-center-pc-client-intro__faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-download-center-pc-client-intro__faq-item:last-child {
  border-bottom: none;
}

.page-download-center-pc-client-intro__faq-question {
  font-size: 1.4em;
  color: #003366; /* Deep Sea Blue */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.page-download-center-pc-client-intro__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  color: #FFCC00;
}

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

.page-download-center-pc-client-intro__faq-answer {
  font-size: 1.1em;
  color: #555;
  padding: 10px 0 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-download-center-pc-client-intro__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
}

.page-download-center-pc-client-intro__cta {
  background-color: #FFCC00; /* Golden Yellow */
  color: #003366; /* Deep Sea Blue for contrast */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-pc-client-intro__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #003366;
}

.page-download-center-pc-client-intro__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #003366;
}

.page-download-center-pc-client-intro__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-download-center-pc-client-intro__cta-image {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-pc-client-intro__hero-title {
    font-size: 2.5em;
  }
  .page-download-center-pc-client-intro__section-title {
    font-size: 2em;
  }
  .page-download-center-pc-client-intro__features-grid,
  .page-download-center-pc-client-intro__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-download-center-pc-client-intro__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-download-center-pc-client-intro__hero {
    padding: 80px 0 40px;
  }
  .page-download-center-pc-client-intro__hero-title {
    font-size: 2em;
  }
  .page-download-center-pc-client-intro__hero-subtitle {
    font-size: 1.1em;
  }
  .page-download-center-pc-client-intro__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-pc-client-intro__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-download-center-pc-client-intro__section {
    padding: 60px 0;
  }
  .page-download-center-pc-client-intro__section-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client-intro__feature-title,
  .page-download-center-pc-client-intro__step-title,
  .page-download-center-pc-client-intro__list-title,
  .page-download-center-pc-client-intro__faq-question {
    font-size: 1.3em;
  }
  .page-download-center-pc-client-intro__cta-title {
    font-size: 2.2em;
  }
  .page-download-center-pc-client-intro__cta-description {
    font-size: 1.1em;
  }
  .page-download-center-pc-client-intro__cta-image {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .page-download-center-pc-client-intro__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client-intro__section-title {
    font-size: 1.6em;
  }
  .page-download-center-pc-client-intro__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-download-center-pc-client-intro__cta-title {
    font-size: 1.8em;
  }
}