.page-download-center {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-download-center__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-download-center__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-download-center__hero-buttons {
  margin-bottom: 40px;
}

.page-download-center__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
  cursor: pointer;
  font-size: 1.1em;
}

.page-download-center__btn--primary {
  background-color: #ffc107; /* Auxiliary color for CTA */
  color: #333; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-download-center__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-download-center__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-download-center__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-download-center__btn--link {
  background-color: transparent;
  color: #007bff;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-download-center__btn--link:hover {
  color: #0056b3;
  text-decoration: none;
}

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

.page-download-center__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-download-center__hero-image-wrapper {
  margin-top: 40px;
}

.page-download-center__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center__intro-section, 
.page-download-center__download-guides, 
.page-download-center__app-features, 
.page-download-center__faq-section, 
.page-download-center__security-notice, 
.page-download-center__cta-section, 
.page-download-center__detail-pages {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download-center__intro-section {
  background-color: #e9f7fe;
}

.page-download-center__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-download-center__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-download-center__section-title--warning {
  color: #dc3545;
}

.page-download-center__section-title--warning::after {
  background-color: #dc3545;
}

.page-download-center__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

.page-download-center__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-download-center__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-download-center__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-download-center__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-download-center__feature-description {
  color: #666;
}

.page-download-center__download-guides {
  background-color: #f8f9fa;
}

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

.page-download-center__guide-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-download-center__guide-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.page-download-center__guide-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-download-center__guide-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-download-center__app-features .page-download-center__feature-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-download-center__app-features .page-download-center__feature-list li {
  background-color: #e9f7fe;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
}

.page-download-center__list-highlight {
  color: #0056b3;
}

.page-download-center__feature-image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-download-center__feature-main-image {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-download-center__faq-section {
  background-color: #f8f9fa;
}

.page-download-center__faq-items {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-download-center__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-download-center__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-download-center__faq-answer {
  color: #555;
}

.page-download-center__inline-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-download-center__inline-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-download-center__security-notice {
  background-color: #ffe0b2; /* Lighter shade of auxiliary color for warning */
  color: #333;
  text-align: center;
  padding: 60px 0;
}

.page-download-center__security-image {
  max-width: 150px;
  height: auto;
  margin-top: 30px;
}

.page-download-center__cta-section {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-download-center__cta-section .page-download-center__section-title {
  color: #fff;
}

.page-download-center__cta-section .page-download-center__section-title::after {
  background-color: #ffc107;
}

.page-download-center__cta-section .page-download-center__text-content {
  color: #e0e0e0;
}

.page-download-center__cta-section .page-download-center__inline-link {
  color: #ffc107;
}

.page-download-center__cta-section .page-download-center__inline-link:hover {
  color: #e0a800;
}

.page-download-center__detail-pages {
  background-color: #f0f8ff;
}

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

.page-download-center__detail-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.page-download-center__detail-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-download-center__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-download-center__detail-title a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-download-center__detail-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center__hero-title {
    font-size: 2.8em;
  }
  .page-download-center__hero-subtitle {
    font-size: 1.3em;
  }
  .page-download-center__section-title {
    font-size: 2em;
  }
  .page-download-center__text-content {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-download-center__hero-title {
    font-size: 2.2em;
  }
  .page-download-center__hero-subtitle {
    font-size: 1.1em;
  }
  .page-download-center__hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-download-center__btn {
    margin: 10px 0;
    width: 80%;
  }
  .page-download-center__hero-image {
    max-width: 95%;
  }
  .page-download-center__features-grid, 
  .page-download-center__guide-grid, 
  .page-download-center__detail-list {
    grid-template-columns: 1fr;
  }
  .page-download-center__section-title {
    font-size: 1.8em;
  }
  .page-download-center__feature-title {
    font-size: 1.3em;
  }
  .page-download-center__guide-title {
    font-size: 1.5em;
  }
  .page-download-center__app-features .page-download-center__feature-list li {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-download-center__faq-question {
    font-size: 1.1em;
  }
  .page-download-center__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-download-center__hero-title {
    font-size: 1.8em;
  }
  .page-download-center__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-download-center__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-download-center__section-title {
    font-size: 1.5em;
  }
  .page-download-center__hero-image {
    max-width: 100%;
  }
}