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

/* Base styles for the page content */
.page-download-center-pc-client {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Default text color for dark background */
  background-color: #001a33; /* Darker shade of main color for overall background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-download-center-pc-client__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Main color gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-download-center-pc-client__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-pc-client__hero-section > * {
  position: relative;
  z-index: 1;
}

.page-download-center-pc-client__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for highlight */
  font-weight: bold;
  line-height: 1.2;
}

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

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

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

.page-download-center-pc-client__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #003366; /* Main color for text */
}

.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; /* Auxiliary color */
  border: 2px solid #FFD700;
}

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

.page-download-center-pc-client__hero-image {
  max-width: 70%;
  height: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 5px solid #004d99;
}

/* Section Titles */
.page-download-center-pc-client__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  font-weight: bold;
}

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

/* Features Section */
.page-download-center-pc-client__features-section {
  background-color: #002244; /* Slightly lighter dark blue */
  padding: 80px 0;
}

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

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

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

.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.6));
}

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

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

/* Download Guide Section */
.page-download-center-pc-client__download-guide-section {
  padding: 80px 0;
  background-color: #001a33;
}

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

.page-download-center-pc-client__step-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background-color: #002d59; /* Slightly lighter main color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #003366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
}

.page-download-center-pc-client__step-content {
  flex-grow: 1;
}

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

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

.page-download-center-pc-client__step-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-download-center-pc-client__step-text a:hover {
  text-decoration: underline;
}

.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.2);
  border: 3px solid #004d99;
}

/* FAQ Section */
.page-download-center-pc-client__faq-section {
  background-color: #002244;
  padding: 80px 0;
}

.page-download-center-pc-client__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-download-center-pc-client__faq-item {
  background-color: #003366;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-download-center-pc-client__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-download-center-pc-client__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-download-center-pc-client__faq-answer {
  color: #c0c0c0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-download-center-pc-client__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-download-center-pc-client__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

/* CTA Section */
.page-download-center-pc-client__cta-section {
  background: linear-gradient(45deg, #003366, #004d99); /* Main color gradient */
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .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__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-download-center-pc-client__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-download-center-pc-client__step-number {
    margin-bottom: 15px;
  }
  .page-download-center-pc-client__cta-title {
    font-size: 2.2em;
  }
  .page-download-center-pc-client__btn--large {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-download-center-pc-client__hero-section {
    padding: 60px 0;
  }
  .page-download-center-pc-client__hero-title {
    font-size: 2em;
  }
  .page-download-center-pc-client__hero-description {
    font-size: 1em;
  }
  .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__hero-image {
    max-width: 90%;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__section-description {
    font-size: 0.9em;
  }
  .page-download-center-pc-client__feature-item {
    padding: 20px;
  }
  .page-download-center-pc-client__feature-title {
    font-size: 1.3em;
  }
  .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;
  }
}

@media (max-width: 480px) {
  .page-download-center-pc-client__hero-section {
    padding: 40px 0;
  }
  .page-download-center-pc-client__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__hero-description {
    font-size: 0.9em;
  }
  .page-download-center-pc-client__btn {
    font-size: 0.9em;
    padding: 12px 25px;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.5em;
  }
  .page-download-center-pc-client__faq-question {
    font-size: 1.1em;
  }
  .page-download-center-pc-client__cta-title {
    font-size: 1.6em;
  }
  .page-download-center-pc-client__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}