/* style/download-center-pc-client.css */
.page-download-center-pc-client {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F; /* Main dark background */
}

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

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

.page-download-center-pc-client__section:nth-child(even) {
  background-color: rgba(255, 215, 0, 0.05); /* Slight accent background for alternating sections */
}

.page-download-center-pc-client__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #203a5e 100%); /* Dark blue gradient */
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

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

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

.page-download-center-pc-client__hero-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

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

.page-download-center-pc-client__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-download-center-pc-client__description {
  font-size: 1.1em;
  color: #c0c0c0;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-download-center-pc-client__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-download-center-pc-client__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
}

.page-download-center-pc-client__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

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

.page-download-center-pc-client__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

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

/* Why Choose Section */
.page-download-center-pc-client__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-download-center-pc-client__feature-item {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

/* How To Download Section */
.page-download-center-pc-client__steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-download-center-pc-client__step-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-download-center-pc-client__step-item p {
  color: #c0c0c0;
  margin-bottom: 20px;
}

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

/* System Requirements Section */
.page-download-center-pc-client__requirements-list ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  text-align: left;
}

.page-download-center-pc-client__requirements-list li {
  background-color: #1a2a47;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #f5e6d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__requirements-list li strong {
  color: #FFD700;
  margin-right: 10px;
}

.page-download-center-pc-client__system-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Exclusive Offers Section */
.page-download-center-pc-client__offers-list ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-download-center-pc-client__offers-list li {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  color: #f5e6d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client__offers-list li strong {
  color: #FFD700;
  font-size: 1.1em;
}

.page-download-center-pc-client__offer-image {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-download-center-pc-client__faq-item {
  background-color: #1a2a47;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-download-center-pc-client__faq-answer {
  color: #c0c0c0;
  font-size: 1em;
  display: block; /* Ensure answer is visible by default for static HTML */
}

/* Call to Action Section */
.page-download-center-pc-client__cta {
  background-color: #0A192F;
  padding: 80px 0;
}

.page-download-center-pc-client__cta .page-download-center-pc-client__section-title {
  color: #FFD700;
}

/* Responsive Design */
@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.1em;
  }

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

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

  .page-download-center-pc-client__hero-image,
  .page-download-center-pc-client__system-image,
  .page-download-center-pc-client__offer-image {
    max-width: 100%;
  }

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

  .page-download-center-pc-client__step-item,
  .page-download-center-pc-client__faq-item,
  .page-download-center-pc-client__offers-list li,
  .page-download-center-pc-client__requirements-list li {
    padding: 20px;
  }
}

@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__section-title {
    font-size: 1.8em;
  }

  .page-download-center-pc-client__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
}