.page-download-center-mobile-web-entrance {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark backgrounds */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-download-center-mobile-web-entrance__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-download-center-mobile-web-entrance__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-download-center-mobile-web-entrance__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-mobile-web-entrance__hero-subtitle {
  font-size: 1.2em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-mobile-web-entrance__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-download-center-mobile-web-entrance__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
  font-size: 1.1em;
}

.page-download-center-mobile-web-entrance__btn--primary:hover {
  background-color: #e5c000;
  border-color: #e5c000;
  transform: translateY(-2px);
}

.page-download-center-mobile-web-entrance__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  font-size: 1em;
}

.page-download-center-mobile-web-entrance__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-download-center-mobile-web-entrance__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-download-center-mobile-web-entrance__hero-image-wrapper {
  margin-top: 40px;
}

.page-download-center-mobile-web-entrance__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-download-center-mobile-web-entrance__section {
  padding: 60px 0;
  text-align: center;
}

.page-download-center-mobile-web-entrance__section--benefits {
  background-color: #2a3340;
}

.page-download-center-mobile-web-entrance__section--guide {
  background-color: #1A202C;
}

.page-download-center-mobile-web-entrance__section--features {
  background-color: #2a3340;
}

.page-download-center-mobile-web-entrance__section--promotions {
  background-color: #1A202C;
}

.page-download-center-mobile-web-entrance__section--faq {
  background-color: #2a3340;
}

.page-download-center-mobile-web-entrance__cta-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-download-center-mobile-web-entrance__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-download-center-mobile-web-entrance__section-description {
  font-size: 1.1em;
  color: #e5dfd3;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-download-center-mobile-web-entrance__benefit-grid,
.page-download-center-mobile-web-entrance__feature-grid,
.page-download-center-mobile-web-entrance__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-download-center-mobile-web-entrance__benefit-item,
.page-download-center-mobile-web-entrance__feature-item,
.page-download-center-mobile-web-entrance__promotion-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-download-center-mobile-web-entrance__benefit-item:hover,
.page-download-center-mobile-web-entrance__feature-item:hover,
.page-download-center-mobile-web-entrance__promotion-item:hover {
  transform: translateY(-5px);
}

.page-download-center-mobile-web-entrance__benefit-title,
.page-download-center-mobile-web-entrance__feature-title,
.page-download-center-mobile-web-entrance__promotion-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-download-center-mobile-web-entrance__benefit-item p,
.page-download-center-mobile-web-entrance__feature-item p,
.page-download-center-mobile-web-entrance__promotion-item p {
  color: #e5dfd3;
}

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

.page-download-center-mobile-web-entrance__step-item {
  background-color: #2a3340;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: left;
}

.page-download-center-mobile-web-entrance__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A202C;
  font-size: 1.8em;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #1A202C;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-download-center-mobile-web-entrance__step-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-download-center-mobile-web-entrance__step-item p {
  color: #e5dfd3;
}

.page-download-center-mobile-web-entrance__link-text {
  color: #FFD700;
  text-decoration: none;
}

.page-download-center-mobile-web-entrance__link-text:hover {
  text-decoration: underline;
}

.page-download-center-mobile-web-entrance__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-download-center-mobile-web-entrance__subsection-description {
  font-size: 1.05em;
  color: #e5dfd3;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-download-center-mobile-web-entrance__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-download-center-mobile-web-entrance__list li {
  background-color: #2a3340;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #e5dfd3;
}

.page-download-center-mobile-web-entrance__list li strong {
  color: #FFD700;
}

.page-download-center-mobile-web-entrance__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-download-center-mobile-web-entrance__faq-item {
  background-color: #1A202C;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-download-center-mobile-web-entrance__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-download-center-mobile-web-entrance__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-download-center-mobile-web-entrance__faq-answer {
  color: #e5dfd3;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 10px;
}

.page-download-center-mobile-web-entrance__faq-answer.active {
  display: block;
}

.page-download-center-mobile-web-entrance__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-download-center-mobile-web-entrance__image-wrapper {
  margin-top: 50px;
}

.page-download-center-mobile-web-entrance__content-image,
.page-download-center-mobile-web-entrance__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-download-center-mobile-web-entrance__hero-title {
    font-size: 2em;
  }

  .page-download-center-mobile-web-entrance__hero-subtitle {
    font-size: 1em;
  }

  .page-download-center-mobile-web-entrance__section-title {
    font-size: 1.8em;
  }

  .page-download-center-mobile-web-entrance__section-description {
    font-size: 0.95em;
  }

  .page-download-center-mobile-web-entrance__benefit-grid,
  .page-download-center-mobile-web-entrance__feature-grid,
  .page-download-center-mobile-web-entrance__promotion-grid,
  .page-download-center-mobile-web-entrance__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-download-center-mobile-web-entrance__cta-title {
    font-size: 2em;
  }

  .page-download-center-mobile-web-entrance__cta-description {
    font-size: 1em;
  }

  .page-download-center-mobile-web-entrance__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}