/* style/resources-how-to-register-23wim.css */
.page-resources-how-to-register-23wim {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light gray for main text on dark background */
  background-color: #1A2035; /* Dark blue main background */
}

.page-resources-how-to-register-23wim__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-register-23wim__hero {
  background: linear-gradient(135deg, #1A2035 0%, #303A52 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-resources-how-to-register-23wim__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0.2;
  animation: page-resources-how-to-register-23wim__pulse 10s infinite alternate;
  z-index: 0;
}

@keyframes page-resources-how-to-register-23wim__pulse {
  0% { transform: scale(1); opacity: 0.1; }
  100% { transform: scale(1.2); opacity: 0.3; }
}

.page-resources-how-to-register-23wim__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-register-23wim__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #E5E5E5;
}

.page-resources-how-to-register-23wim__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
}

.page-resources-how-to-register-23wim__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2035; /* Dark blue text on gold */
}

.page-resources-how-to-register-23wim__btn--primary:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-23wim__btn--secondary {
  background-color: #303A52; /* Darker blue button */
  color: #FFD700; /* Gold text on darker blue */
  border: 1px solid #FFD700;
}

.page-resources-how-to-register-23wim__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2035;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-23wim__btn--link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-how-to-register-23wim__btn--link:hover {
  background-color: #FFD700;
  color: #1A2035;
}

.page-resources-how-to-register-23wim__btn--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-resources-how-to-register-23wim__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-resources-how-to-register-23wim__section:last-of-type {
  border-bottom: none;
}

.page-resources-how-to-register-23wim__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-23wim__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 60px auto;
  color: #CCCCCC;
}

.page-resources-how-to-register-23wim__content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.page-resources-how-to-register-23wim__main-content h3 {
  color: #FFD700; /* Gold for subsections */
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-register-23wim__main-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-resources-how-to-register-23wim__main-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-resources-how-to-register-23wim__main-content li {
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-resources-how-to-register-23wim__main-content strong {
  color: #FFD700;
}

.page-resources-how-to-register-23wim__sidebar {
  background-color: #252D42; /* Slightly lighter dark blue for sidebar */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-23wim__sidebar-block {
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-how-to-register-23wim__sidebar-block:last-child {
  margin-bottom: 0;
}

.page-resources-how-to-register-23wim__sidebar-title {
  color: #FFD700; /* Gold for sidebar titles */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-resources-how-to-register-23wim__sidebar p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #CCCCCC;
}

.page-resources-how-to-register-23wim__sidebar-image {
  max-width: 100px;
  height: auto;
  margin-top: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-how-to-register-23wim__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.page-resources-how-to-register-23wim__step {
  background-color: #252D42;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-resources-how-to-register-23wim__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-resources-how-to-register-23wim__step-number {
  background-color: #FFD700;
  color: #1A2035;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-resources-how-to-register-23wim__step-title {
  color: #FFD700;
  font-size: 2em;
  margin: 0;
}

.page-resources-how-to-register-23wim__step p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #E5E5E5;
}

.page-resources-how-to-register-23wim__step ul {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-resources-how-to-register-23wim__step li {
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-resources-how-to-register-23wim__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-resources-how-to-register-23wim__image--left {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
  max-width: 40%;
}

.page-resources-how-to-register-23wim__image--right {
  float: right;
  margin-left: 25px;
  margin-bottom: 15px;
  max-width: 40%;
}

.page-resources-how-to-register-23wim__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-register-23wim__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #252D42;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-resources-how-to-register-23wim__cta-text {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-how-to-register-23wim__list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-resources-how-to-register-23wim__list li {
  background-color: #252D42;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #FFD700;
  line-height: 1.6;
  color: #E5E5E5;
  font-size: 1.1em;
}

.page-resources-how-to-register-23wim__list li strong {
  color: #FFD700;
}

.page-resources-how-to-register-23wim__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-register-23wim__benefit-item {
  background-color: #252D42;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-register-23wim__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-register-23wim__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-resources-how-to-register-23wim__benefit-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-resources-how-to-register-23wim__benefit-item p {
  color: #CCCCCC;
  line-height: 1.6;
}

.page-resources-how-to-register-23wim__section--final-cta {
  text-align: center;
  background-color: #1A2035;
  padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-how-to-register-23wim__hero-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-register-23wim__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-how-to-register-23wim__content-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-register-23wim__image--left,
  .page-resources-how-to-register-23wim__image--right {
    float: none;
    margin: 20px auto;
    max-width: 80%;
  }

  .page-resources-how-to-register-23wim__sidebar {
    order: -1; /* Move sidebar above main content on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-register-23wim__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-register-23wim__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-register-23wim__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-register-23wim__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-how-to-register-23wim__list {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-register-23wim__benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-register-23wim__hero-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-register-23wim__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-how-to-register-23wim__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-register-23wim__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-resources-how-to-register-23wim__step-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-register-23wim__cta-text {
    font-size: 1.2em;
  }
}