/* style/registration-download-account-verification.css */
.page-registration-download-account-verification {
  font-family: 'Arial', sans-serif;
  color: #1A2E47; /* Dark blue for main text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

.page-registration-download-account-verification__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-download-account-verification__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #3a506b 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-registration-download-account-verification__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-registration-download-account-verification__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-registration-download-account-verification__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-registration-download-account-verification__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-registration-download-account-verification__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-registration-download-account-verification__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-registration-download-account-verification__section {
  padding: 60px 0;
}

.page-registration-download-account-verification__section--alt-bg {
  background-color: #ffffff;
}

.page-registration-download-account-verification__section--final-cta {
  background: linear-gradient(90deg, #1A2E47, #3a506b);
  color: #FFFFFF;
  text-align: center;
}

.page-registration-download-account-verification__heading {
  font-size: 2em;
  color: #1A2E47;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-registration-download-account-verification__section--alt-bg .page-registration-download-account-verification__heading {
  color: #1A2E47;
}

.page-registration-download-account-verification__section--final-cta .page-registration-download-account-verification__heading {
  color: #FFD700;
}

.page-registration-download-account-verification__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-registration-download-account-verification__sub-heading {
  font-size: 1.5em;
  color: #1A2E47;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-registration-download-account-verification__content-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: rgba(26, 46, 71, 0.9); /* Slightly lighter dark blue for body text */
}

.page-registration-download-account-verification__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-registration-download-account-verification__list li {
  margin-bottom: 10px;
  color: rgba(26, 46, 71, 0.9);
}

.page-registration-download-account-verification__nested-list {
  list-style: circle inside;
  margin-top: 5px;
  padding-left: 20px;
}

.page-registration-download-account-verification__note {
  font-style: italic;
  color: #555;
  margin-top: 5px;
  font-size: 0.95em;
}

.page-registration-download-account-verification__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-registration-download-account-verification__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-download-account-verification__final-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-registration-download-account-verification__disclaimer {
  font-size: 0.9em;
  margin-top: 30px;
  color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-registration-download-account-verification__title {
    font-size: 2.2em;
  }

  .page-registration-download-account-verification__subtitle,
  .page-registration-download-account-verification__final-text {
    font-size: 1em;
  }

  .page-registration-download-account-verification__heading {
    font-size: 1.8em;
  }

  .page-registration-download-account-verification__sub-heading {
    font-size: 1.3em;
  }

  .page-registration-download-account-verification__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-registration-download-account-verification__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-registration-download-account-verification__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-registration-download-account-verification__title {
    font-size: 1.8em;
  }

  .page-registration-download-account-verification__heading {
    font-size: 1.5em;
  }

  .page-registration-download-account-verification__sub-heading {
    font-size: 1.2em;
  }

  .page-registration-download-account-verification__cta-button--large {
    display: block;
    width: 90%;
    margin: 20px auto;
  }
  .page-registration-download-account-verification__list,
  .page-registration-download-account-verification__nested-list {
    padding-left: 10px;
  }
}