/* style/registration-download-web-access-guide.css */
.page-registration-download-web-access-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-registration-download-web-access-guide__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E85 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-registration-download-web-access-guide__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.page-registration-download-web-access-guide__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.page-registration-download-web-access-guide__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-registration-download-web-access-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-registration-download-web-access-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-registration-download-web-access-guide__hero-image-wrapper {
  max-width: 600px;
  width: 100%;
  margin-top: 40px;
  z-index: 1;
}

.page-registration-download-web-access-guide__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-registration-download-web-access-guide__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-download-web-access-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-registration-download-web-access-guide__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-registration-download-web-access-guide__cta-button--large {
  padding: 18px 35px;
  font-size: 1.4em;
}

.page-registration-download-web-access-guide__section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-registration-download-web-access-guide__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-registration-download-web-access-guide__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-registration-download-web-access-guide__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-registration-download-web-access-guide__section-title .highlight {
  color: #FFD700;
}

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

.page-registration-download-web-access-guide__intro p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.page-registration-download-web-access-guide__steps {
  background-color: #f1f6fc;
}

.page-registration-download-web-access-guide__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  gap: 30px;
}

.page-registration-download-web-access-guide__step-item:last-child {
  margin-bottom: 0;
}

.page-registration-download-web-access-guide__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  background-color: #0A2463;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-registration-download-web-access-guide__step-content h3 {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-registration-download-web-access-guide__step-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-registration-download-web-access-guide__step-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #444;
}

.page-registration-download-web-access-guide__step-content ul li {
  margin-bottom: 8px;
}

.page-registration-download-web-access-guide__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-download-web-access-guide__button-group {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-registration-download-web-access-guide__step-content .warning {
  color: #D32F2F;
  background-color: #FFEBEE;
  border-left: 5px solid #D32F2F;
  padding: 15px;
  margin-top: 20px;
  font-weight: bold;
}

.page-registration-download-web-access-guide__tips {
  background-color: #fcfcfc;
}

.page-registration-download-web-access-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-registration-download-web-access-guide__tip-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-download-web-access-guide__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-registration-download-web-access-guide__tip-card h3 {
  color: #0A2463;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-registration-download-web-access-guide__tip-card p {
  color: #555;
}

.page-registration-download-web-access-guide__bottom-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-registration-download-web-access-guide__faq {
  background-color: #eef4fb;
}

.page-registration-download-web-access-guide__faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.page-registration-download-web-access-guide__faq-item h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-registration-download-web-access-guide__faq-item p {
  color: #555;
}

.page-registration-download-web-access-guide__cta-bottom {
  background-color: #0A2463;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-registration-download-web-access-guide__cta-bottom .page-registration-download-web-access-guide__section-title {
  color: #FFFFFF;
}

.page-registration-download-web-access-guide__cta-bottom .page-registration-download-web-access-guide__section-title::after {
  background-color: #FFD700;
}

.page-registration-download-web-access-guide__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-registration-download-web-access-guide__small-text {
  font-size: 0.9em;
  margin-top: 20px;
  opacity: 0.7;
}

.page-registration-download-web-access-guide .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-registration-download-web-access-guide__hero {
    padding: 60px 15px;
  }

  .page-registration-download-web-access-guide__hero-title {
    font-size: 2.5em;
  }

  .page-registration-download-web-access-guide__hero-description {
    font-size: 1.1em;
  }

  .page-registration-download-web-access-guide__section-title {
    font-size: 2em;
  }

  .page-registration-download-web-access-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .page-registration-download-web-access-guide__step-number {
    margin-bottom: 20px;
  }

  .page-registration-download-web-access-guide__step-content h3 {
    font-size: 1.5em;
  }

  .page-registration-download-web-access-guide__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-registration-download-web-access-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-registration-download-web-access-guide__tip-card h3 {
    font-size: 1.2em;
  }

  .page-registration-download-web-access-guide__cta-button--large {
    font-size: 1.2em;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .page-registration-download-web-access-guide__hero-title {
    font-size: 2em;
  }

  .page-registration-download-web-access-guide__hero-description {
    font-size: 1em;
  }

  .page-registration-download-web-access-guide__section-title {
    font-size: 1.8em;
  }

  .page-registration-download-web-access-guide__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}