/* style/download-center-pc.css */
.page-download-center-pc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text on dark background */
  background-color: #0F0822; /* Slightly lighter than main for body background */
}

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

/* Hero Section */
.page-download-center-pc__hero-section {
  background: linear-gradient(135deg, #1A0D3B, #2A185B);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-download-center-pc__main-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-download-center-pc__subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-download-center-pc__cta-button--primary {
  background-color: #FFD700;
  color: #1A0D3B;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center-pc__cta-button--primary:hover {
  background-color: #E0B000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-download-center-pc__cta-button--secondary {
  background-color: #1A0D3B;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-download-center-pc__cta-button--secondary:hover {
  background-color: #2A185B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.page-download-center-pc__hero-image {
  max-width: 90%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-download-center-pc__section {
  padding: 60px 0;
  background-color: #1A0D3B;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc__section:nth-of-type(even) {
  background-color: #0F0822;
}

.page-download-center-pc__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.page-download-center-pc__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__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Benefits Grid */
.page-download-center-pc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-pc__benefit-item {
  background-color: #2A185B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-pc__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-download-center-pc__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__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-download-center-pc__benefit-item p {
  font-size: 1em;
  color: #E0E0E0;
}

/* How-to-Download Section */
.page-download-center-pc__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-pc__step-item {
  background-color: #2A185B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
}

.page-download-center-pc__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A0D3B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: -50px auto 20px;
  border: 3px solid #1A0D3B;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

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

.page-download-center-pc__step-item p {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

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

/* Requirements Section */
.page-download-center-pc__requirement-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  background-color: #2A185B;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc__requirement-list li {
  padding: 15px 25px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-download-center-pc__requirement-list li:last-child {
  border-bottom: none;
}

.page-download-center-pc__requirement-list li strong {
  color: #FFD700;
}

.page-download-center-pc__requirements-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.page-download-center-pc__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-pc__feature-item {
  background-color: #2A185B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-pc__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

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

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

.page-download-center-pc__feature-item p {
  font-size: 1em;
  color: #E0E0E0;
}

/* FAQ Section */
.page-download-center-pc__faq {
  background-color: #0F0822;
}

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

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

.page-download-center-pc__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

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

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

.page-download-center-pc__faq-item.active .page-download-center-pc__faq-question::after {
  content: '-';
}

/* CTA Section */
.page-download-center-pc__cta-section {
  background: linear-gradient(135deg, #2A185B, #1A0D3B);
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-download-center-pc__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-pc__main-title {
    font-size: 2.8em;
  }

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

  .page-download-center-pc__grid, .page-download-center-pc__steps-grid, .page-download-center-pc__feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-download-center-pc__hero-section {
    padding: 60px 0 30px;
  }

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

  .page-download-center-pc__subtitle {
    font-size: 1.1em;
  }

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

  .page-download-center-pc__section {
    padding: 40px 0;
  }

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

  .page-download-center-pc__section-description {
    font-size: 1em;
  }

  .page-download-center-pc__benefit-item, .page-download-center-pc__step-item, .page-download-center-pc__feature-item {
    padding: 20px;
  }

  .page-download-center-pc__benefit-title, .page-download-center-pc__step-title, .page-download-center-pc__feature-title {
    font-size: 1.4em;
  }

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

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

@media (max-width: 480px) {
  .page-download-center-pc__main-title {
    font-size: 1.8em;
  }

  .page-download-center-pc__section-title {
    font-size: 1.5em;
  }

  .page-download-center-pc__cta-button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }

  .page-download-center-pc__step-number {
    margin-top: 0;
  }

  .page-download-center-pc__hero-image {
    max-width: 100%;
  }
}