.page-download-center-pc-client {
  font-family: 'Arial', sans-serif;
  color: #333;
  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, #0A246A 0%, #F39C12 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-download-center-pc-client__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.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: #F39C12; /* Auxiliary color */
  color: #0A246A; /* Primary color for text */
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-download-center-pc-client__btn--primary:hover {
  background-color: #e08c0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.page-download-center-pc-client__btn--secondary {
  background-color: #0A246A; /* Primary color */
  color: #fff;
  box-shadow: 0 4px 15px rgba(10, 36, 106, 0.4);
}

.page-download-center-pc-client__btn--secondary:hover {
  background-color: #1a3c8c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 36, 106, 0.6);
}

.page-download-center-pc-client__btn--tertiary {
  background-color: #546697; /* Lighter shade of primary for contrast */
  color: #fff;
  box-shadow: 0 4px 15px rgba(84, 102, 151, 0.4);
}

.page-download-center-pc-client__btn--tertiary:hover {
  background-color: #6c7ca6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 102, 151, 0.6);
}

.page-download-center-pc-client__btn--outline {
  background-color: transparent;
  border: 2px solid #F39C12;
  color: #F39C12;
  padding: 13px 28px;
}

.page-download-center-pc-client__btn--outline:hover {
  background-color: #F39C12;
  color: #0A246A;
}

.page-download-center-pc-client__hero-image-wrapper {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-download-center-pc-client__section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-download-center-pc-client__section:nth-of-type(even) {
  background-color: #fff;
}

.page-download-center-pc-client__section-title {
  font-size: 2.5em;
  color: #0A246A; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
}

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

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

.page-download-center-pc-client__feature-item,
.page-download-center-pc-client__step-item,
.page-download-center-pc-client__faq-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-pc-client__feature-item:hover,
.page-download-center-pc-client__step-item:hover,
.page-download-center-pc-client__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-download-center-pc-client__feature-title,
.page-download-center-pc-client__step-title,
.page-download-center-pc-client__faq-question {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-download-center-pc-client__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F39C12;
  color: #0A246A;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

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

.page-download-center-pc-client__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-download-center-pc-client__requirements-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-download-center-pc-client__requirements-list li {
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  color: #444;
  text-align: left;
}

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

.page-download-center-pc-client__requirements-list strong {
  color: #0A246A;
}

.page-download-center-pc-client__note {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 20px;
}

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

.page-download-center-pc-client__feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-pc-client__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-download-center-pc-client__feature-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-download-center-pc-client__feature-card-title {
  font-size: 1.4em;
  color: #0A246A;
  padding: 20px 20px 10px;
}

.page-download-center-pc-client__feature-card-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px 20px;
}

.page-download-center-pc-client__faq-item {
  text-align: left;
}

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

.page-download-center-pc-client__faq-answer {
  color: #555;
}

.page-download-center-pc-client__responsible-gaming {
  background-color: #f0f8ff;
  border-top: 2px solid #e0e0e0;
}

.page-download-center-pc-client__responsible-gaming .page-download-center-pc-client__section-title {
  color: #0A246A;
}

.page-download-center-pc-client__responsible-gaming .page-download-center-pc-client__section-subtitle {
  color: #444;
}

.page-download-center-pc-client__call-to-action {
  background-color: #0A246A;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-download-center-pc-client__call-to-action .page-download-center-pc-client__section-title {
  color: #F39C12;
}

.page-download-center-pc-client__call-to-action .page-download-center-pc-client__section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-pc-client__hero-title {
    font-size: 2.5em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 2em;
  }
  .page-download-center-pc-client__features-grid,
  .page-download-center-pc-client__steps-grid,
  .page-download-center-pc-client__features-overview-grid,
  .page-download-center-pc-client__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@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__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-pc-client__section {
    padding: 40px 0;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-download-center-pc-client__feature-item,
  .page-download-center-pc-client__step-item,
  .page-download-center-pc-client__faq-item {
    padding: 20px;
  }
  .page-download-center-pc-client__feature-title,
  .page-download-center-pc-client__step-title,
  .page-download-center-pc-client__faq-question {
    font-size: 1.3em;
  }
  .page-download-center-pc-client__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-pc-client__cta-buttons .page-download-center-pc-client__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-download-center-pc-client__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.6em;
  }
  .page-download-center-pc-client__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-download-center-pc-client__cta-buttons .page-download-center-pc-client__btn {
    width: 95%;
  }
}