.page-download-center-pc-client {
  font-family: 'Arial', sans-serif;
  color: #0A2342; /* Dark blue for primary text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for general sections */
}

.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, #0A2342, #1A3F66); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-pc-client__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold accent for main title */
}

.page-download-center-pc-client__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-pc-client__download-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold button */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-download-center-pc-client__download-btn:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-download-center-pc-client__small-text {
  font-size: 0.9em;
  margin-top: 20px;
  opacity: 0.8;
}

.page-download-center-pc-client__benefits-section,
.page-download-center-pc-client__download-guide-section,
.page-download-center-pc-client__system-requirements-section,
.page-download-center-pc-client__faq-section,
.page-download-center-pc-client__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* White background for content sections */
  border-bottom: 1px solid #eee;
}

.page-download-center-pc-client__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-center-pc-client__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333;
}

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

.page-download-center-pc-client__benefit-item {
  text-align: center;
  padding: 30px;
  background-color: #F0F4F8; /* Light blue-gray for benefit cards */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-download-center-pc-client__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-download-center-pc-client__benefit-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-pc-client__benefit-text {
  font-size: 1em;
  color: #555;
}

.page-download-center-pc-client__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-download-center-pc-client__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-download-center-pc-client__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700; /* Gold background for step number */
  color: #0A2342; /* Dark blue text on gold */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__step-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-pc-client__step-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-download-center-pc-client__guide-btn {
  display: inline-block;
  background-color: #0A2342; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-download-center-pc-client__guide-btn:hover {
  background-color: #1A3F66; /* Slightly lighter dark blue on hover */
}

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

.page-download-center-pc-client__inline-link {
  color: #0A2342;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-download-center-pc-client__inline-link:hover {
  color: #FFD700;
}

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

.page-download-center-pc-client__requirement-item {
  background-color: #F0F4F8;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-pc-client__requirement-title {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-pc-client__requirement-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-download-center-pc-client__requirement-item li {
  margin-bottom: 8px;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.page-download-center-pc-client__requirement-item li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-download-center-pc-client__faq-section {
  background-color: #F8F8F8;
}

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

.page-download-center-pc-client__faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__faq-question {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-download-center-pc-client__faq-answer {
  font-size: 1em;
  color: #555;
  display: block; /* Ensure it's visible by default, JS can toggle */
}

.page-download-center-pc-client__cta-section {
  background-color: #0A2342; /* Dark blue background for CTA */
  color: #FFFFFF; /* White text on dark blue */
  text-align: center;
  padding: 100px 0;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__section-title {
  color: #FFD700; /* Gold title on dark blue CTA */
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__section-description {
  color: #f0f0f0;
}

.page-download-center-pc-client__download-btn--large {
  padding: 20px 50px;
  font-size: 1.5em;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-download-center-pc-client__hero-title {
    font-size: 2.5em;
  }
  .page-download-center-pc-client__hero-subtitle {
    font-size: 1.2em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 2em;
  }
  .page-download-center-pc-client__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-download-center-pc-client__guide-steps {
    align-items: center;
  }
  .page-download-center-pc-client__step-item {
    width: 100%;
  }
  .page-download-center-pc-client__download-btn--large {
    font-size: 1.2em;
    padding: 15px 35px;
  }
}

@media (max-width: 480px) {
  .page-download-center-pc-client__hero-title {
    font-size: 2em;
  }
  .page-download-center-pc-client__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-pc-client__download-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__hero-section,
  .page-download-center-pc-client__benefits-section,
  .page-download-center-pc-client__download-guide-section,
  .page-download-center-pc-client__system-requirements-section,
  .page-download-center-pc-client__faq-section,
  .page-download-center-pc-client__cta-section {
    padding: 60px 0;
  }
}