.page-download-center-mobile-web {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0A2E36; /* Primary dark background */
  line-height: 1.6;
}

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

.page-download-center-mobile-web__hero {
  background: linear-gradient(135deg, #0A2E36 0%, #1a4f5b 100%); /* Dark blue/green to slightly lighter */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-download-center-mobile-web__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B400; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-mobile-web__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

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

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

.page-download-center-mobile-web__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #E0B400; /* Secondary color */
}

.page-download-center-mobile-web__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #CCCCCC;
}

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

.page-download-center-mobile-web__btn--primary {
  background-color: #E0B400; /* Secondary color */
  color: #0A2E36; /* Primary dark text */
}

.page-download-center-mobile-web__btn--primary:hover {
  background-color: #ffc928;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(224, 180, 0, 0.4);
}

.page-download-center-mobile-web__btn--secondary {
  background-color: #0A2E36; /* Primary dark background */
  color: #E0B400; /* Secondary color for text */
  border: 2px solid #E0B400;
}

.page-download-center-mobile-web__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2E36;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(224, 180, 0, 0.4);
}

.page-download-center-mobile-web__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Advantages Section */
.page-download-center-mobile-web__advantages {
  background-color: #0A2E36;
}

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

.page-download-center-mobile-web__advantage-item {
  background-color: #1a4f5b; /* Slightly lighter shade of primary */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-mobile-web__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-mobile-web__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E0B400);
}

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

.page-download-center-mobile-web__advantage-text {
  color: #F0F0F0;
}

/* How-to-Access Section */
.page-download-center-mobile-web__how-to-access {
  background-color: #0a2e36;
}

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

.page-download-center-mobile-web__step-item {
  background-color: #1a4f5b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-download-center-mobile-web__step-number {
  background-color: #E0B400;
  color: #0A2E36;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #0A2E36;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.page-download-center-mobile-web__step-title {
  font-size: 1.4em;
  color: #E0B400;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-download-center-mobile-web__step-text {
  color: #F0F0F0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-download-center-mobile-web__link {
    color: #E0B400;
    text-decoration: underline;
}

.page-download-center-mobile-web__link:hover {
    color: #ffc928;
}

/* Features Section */
.page-download-center-mobile-web__features {
  background-color: #0A2E36;
}

.page-download-center-mobile-web__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-download-center-mobile-web__feature-list li {
  background-color: #1a4f5b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-download-center-mobile-web__feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px #E0B400);
}

.page-download-center-mobile-web__feature-title {
  font-size: 1.4em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-download-center-mobile-web__feature-list p {
  color: #F0F0F0;
}

.page-download-center-mobile-web__cta-section {
    margin-top: 60px;
    padding: 40px;
    background-color: #1a4f5b;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-mobile-web__cta-text {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Optimization Tips Section */
.page-download-center-mobile-web__optimization-tips {
  background-color: #0A2E36;
}

.page-download-center-mobile-web__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-download-center-mobile-web__tips-list li {
  background-color: #1a4f5b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-download-center-mobile-web__tip-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px #E0B400);
}

.page-download-center-mobile-web__tip-title {
  font-size: 1.4em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-download-center-mobile-web__tips-list p {
  color: #F0F0F0;
}

/* FAQ Section */
.page-download-center-mobile-web__faq {
  background-color: #0a2e36;
}

.page-download-center-mobile-web__accordion {
  margin-top: 50px;
  text-align: left;
}

.page-download-center-mobile-web__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #1a4f5b;
  border-radius: 8px;
  overflow: hidden;
}

.page-download-center-mobile-web__accordion-header {
  background-color: #1a4f5b;
  color: #E0B400;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-download-center-mobile-web__accordion-header:hover {
  background-color: #2c6e7a;
}

.page-download-center-mobile-web__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-download-center-mobile-web__accordion-content {
  background-color: #0A2E36;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-download-center-mobile-web__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-download-center-mobile-web__accordion-content p {
  color: #F0F0F0;
  margin: 0;
}

/* Final CTA Section */
.page-download-center-mobile-web__final-cta {
    background-color: #1a4f5b;
    padding: 80px 0;
}

.page-download-center-mobile-web__disclaimer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-download-center-mobile-web__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-download-center-mobile-web__grid,
  .page-download-center-mobile-web__steps-grid,
  .page-download-center-mobile-web__feature-list,
  .page-download-center-mobile-web__tips-list {
    grid-template-columns: 1fr;
  }

  .page-download-center-mobile-web__advantage-item,
  .page-download-center-mobile-web__step-item,
  .page-download-center-mobile-web__feature-list li,
  .page-download-center-mobile-web__tips-list li {
    text-align: center;
    align-items: center;
  }

  .page-download-center-mobile-web__advantage-icon,
  .page-download-center-mobile-web__feature-icon,
  .page-download-center-mobile-web__tip-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .page-download-center-mobile-web__step-number {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }
  .page-download-center-mobile-web__step-title {
    margin-top: 0;
  }

  .page-download-center-mobile-web__accordion-content.active {
    max-height: 400px; /* More height for mobile content */
  }
}

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

  .page-download-center-mobile-web__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-mobile-web__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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