/* style/download-center-pc-client.css */

.page-download-center-pc-client {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1A3A; /* Primary dark blue background */
  line-height: 1.6;
}

.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, #0A1A3A, #1A3A6A);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Golden for hero section titles */
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD700;
}

.page-download-center-pc-client__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: pulse 4s infinite ease-in-out;
}

.page-download-center-pc-client__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(10, 26, 58, 0.2);
  border-radius: 50%;
  animation: pulse 5s infinite reverse ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

.page-download-center-pc-client__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-pc-client__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-download-center-pc-client__hero-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 20px auto 0;
  color: #C0C0C0;
}

.page-download-center-pc-client__download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-download-center-pc-client__btn {
  display: inline-flex;
  align-items: center;
  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.3);
}

.page-download-center-pc-client__btn i {
  margin-right: 10px;
  font-size: 1.2em;
}

.page-download-center-pc-client__btn--primary {
  background-color: #FFD700;
  color: #0A1A3A;
  border: 2px solid #FFD700;
}

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

.page-download-center-pc-client__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-download-center-pc-client__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-download-center-pc-client__section {
  padding: 80px 0;
  text-align: center;
}

.page-download-center-pc-client__section--why-choose {
  background-color: #1A2A4A;
}

.page-download-center-pc-client__section--guide {
  background-color: #0A1A3A;
}

.page-download-center-pc-client__section--benefits {
  background-color: #1A2A4A;
}

.page-download-center-pc-client__section--faq {
  background-color: #0A1A3A;
}

.page-download-center-pc-client__cta-section {
  background: linear-gradient(45deg, #0A1A3A, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #0A1A3A;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__cta-title,
.page-download-center-pc-client__cta-section .page-download-center-pc-client__cta-description {
  color: #0A1A3A;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__btn--primary {
  background-color: #0A1A3A;
  color: #FFD700;
  border-color: #0A1A3A;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__btn--primary:hover {
  background-color: #2A3A5A;
  color: #FFD700;
}

.page-download-center-pc-client__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

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

.page-download-center-pc-client__section-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #C0C0C0;
}

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

.page-download-center-pc-client__feature-item,
.page-download-center-pc-client__benefit-item {
  background-color: #0A1A3A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-download-center-pc-client__feature-item:hover,
.page-download-center-pc-client__benefit-item:hover {
  transform: translateY(-10px);
  background-color: #1A2A4A;
}

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

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

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

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

.page-download-center-pc-client__step {
  background-color: #1A2A4A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-download-center-pc-client__step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #FFD700;
  color: #0A1A3A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.page-download-center-pc-client__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

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

.page-download-center-pc-client__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-download-center-pc-client__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-download-center-pc-client__faq-item {
  background-color: #1A2A4A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-download-center-pc-client__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-download-center-pc-client__faq-answer {
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-download-center-pc-client__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-download-center-pc-client__faq-answer a:hover {
  color: #E6C200;
}

.page-download-center-pc-client__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
}

.page-download-center-pc-client__cta-description {
  font-size: 1.4em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-download-center-pc-client__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-download-center-pc-client__cta-small-text {
  font-size: 1em;
  margin-top: 20px;
  color: #0A1A3A;
}

.page-download-center-pc-client__cta-small-text a {
  color: #0A1A3A;
  font-weight: bold;
  text-decoration: underline;
}

.page-download-center-pc-client__cta-small-text a:hover {
  color: #3A4A6A;
}

/* 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__download-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-download-center-pc-client__btn {
    width: 80%;
    margin: 0 auto;
  }

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

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

  .page-download-center-pc-client__step-number {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-download-center-pc-client__step-title {
    margin-top: 40px;
  }

  .page-download-center-pc-client__cta-title {
    font-size: 2.2em;
  }

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

@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__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-download-center-pc-client__feature-title,
  .page-download-center-pc-client__benefit-title {
    font-size: 1.4em;
  }

  .page-download-center-pc-client__step-title {
    font-size: 1.6em;
  }

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

  .page-download-center-pc-client__cta-title {
    font-size: 1.8em;
  }

  .page-download-center-pc-client__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}