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

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

.page-download-center-mobile-web-portal__hero-section {
  background: linear-gradient(135deg, #0A244A 0%, #1A3F70 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-mobile-web-portal__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:hero_main_bg_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-mobile-web-portal__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-download-center-mobile-web-portal__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center-mobile-web-portal__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-mobile-web-portal__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-download-center-mobile-web-portal__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A244A; /* Dark blue */
}

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

.page-download-center-mobile-web-portal__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-download-center-mobile-web-portal__button--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
  transform: translateY(-2px);
}

.page-download-center-mobile-web-portal__hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  max-width: 500px;
  width: 100%;
}

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

.page-download-center-mobile-web-portal__section {
  padding: 60px 0;
}

.page-download-center-mobile-web-portal__section:nth-of-type(odd) {
  background-color: #FFFFFF;
}

.page-download-center-mobile-web-portal__section:nth-of-type(even) {
  background-color: #F0F2F5;
}

.page-download-center-mobile-web-portal__section-title {
  font-size: 2.5em;
  color: #0A244A; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-download-center-mobile-web-portal__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.page-download-center-mobile-web-portal__text-content strong {
  color: #0A244A;
}

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

.page-download-center-mobile-web-portal__step-item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-download-center-mobile-web-portal__step-item:hover {
  transform: translateY(-5px);
}

.page-download-center-mobile-web-portal__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-download-center-mobile-web-portal__step-title {
  font-size: 1.4em;
  color: #0A244A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-download-center-mobile-web-portal__step-description {
  font-size: 1em;
  color: #555;
}

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

.page-download-center-mobile-web-portal__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-mobile-web-portal__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-download-center-mobile-web-portal__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-download-center-mobile-web-portal__feature-title {
  font-size: 1.3em;
  color: #0A244A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-download-center-mobile-web-portal__feature-description {
  font-size: 0.95em;
  color: #555;
}

.page-download-center-mobile-web-portal__comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-download-center-mobile-web-portal__column-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  background-color: #0A244A;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-download-center-mobile-web-portal__list {
  list-style: none;
  padding-left: 0;
}

.page-download-center-mobile-web-portal__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333;
}

.page-download-center-mobile-web-portal__list li::before {
  content: '✔'; /* Checkmark icon */
  color: #FFD700; /* Gold */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-download-center-mobile-web-portal__security-responsible .page-download-center-mobile-web-portal__section-image {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-web-portal__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-mobile-web-portal__faq-question {
  font-size: 1.2em;
  color: #0A244A;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-download-center-mobile-web-portal__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 10px;
  border-left: 3px solid #FFD700;
}

.page-download-center-mobile-web-portal__cta-section {
  background: linear-gradient(90deg, #0A244A, #1A3F70);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-download-center-mobile-web-portal__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-center-mobile-web-portal__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-mobile-web-portal__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-download-center-mobile-web-portal__cta-subtext {
  margin-top: 20px;
  font-size: 0.95em;
  color: #C0C0C0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-download-center-mobile-web-portal__hero-title {
    font-size: 3em;
  }
  .page-download-center-mobile-web-portal__section-title {
    font-size: 2em;
  }
  .page-download-center-mobile-web-portal__comparison-table {
    grid-template-columns: 1fr;
  }
  .page-download-center-mobile-web-portal__hero-image-wrapper {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-download-center-mobile-web-portal__hero-section {
    padding: 60px 0;
  }
  .page-download-center-mobile-web-portal__hero-title {
    font-size: 2.5em;
  }
  .page-download-center-mobile-web-portal__hero-description {
    font-size: 1.1em;
  }
  .page-download-center-mobile-web-portal__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-mobile-web-portal__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-download-center-mobile-web-portal__section {
    padding: 40px 0;
  }
  .page-download-center-mobile-web-portal__section-title {
    font-size: 1.8em;
  }
  .page-download-center-mobile-web-portal__text-content {
    font-size: 1em;
  }
  .page-download-center-mobile-web-portal__step-by-step {
    grid-template-columns: 1fr;
  }
  .page-download-center-mobile-web-portal__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-download-center-mobile-web-portal__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-download-center-mobile-web-portal__hero-title {
    font-size: 2em;
  }
  .page-download-center-mobile-web-portal__hero-description {
    font-size: 1em;
  }
  .page-download-center-mobile-web-portal__button {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-mobile-web-portal__section-title {
    font-size: 1.5em;
  }
  .page-download-center-mobile-web-portal__cta-title {
    font-size: 1.8em;
  }
  .page-download-center-mobile-web-portal__cta-description {
    font-size: 1em;
  }
}