.page-index-how-to-register {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for readability on light backgrounds */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-how-to-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-how-to-register__hero-section {
  background: linear-gradient(135deg, #003366 0%, #003366 60%, #FFCC00 100%); /* Deep blue to gold gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-how-to-register__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  opacity: 0.8;
  z-index: 1;
}

.page-index-how-to-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-how-to-register__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 2;
}

.page-index-how-to-register__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep blue for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-how-to-register__cta-button:hover {
  background-color: #e6b800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-index-how-to-register__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-index-how-to-register__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-how-to-register__section {
  padding: 60px 0;
}

.page-index-how-to-register__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-index-how-to-register__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-how-to-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  border-radius: 2px;
}

.page-index-how-to-register__flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-how-to-register__flex-container--reverse {
  flex-direction: row-reverse;
}

.page-index-how-to-register__content-block {
  flex: 1;
}

.page-index-how-to-register__image-block {
  flex: 1;
  text-align: center;
}

.page-index-how-to-register__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-index-how-to-register__image:hover {
  transform: translateY(-5px);
}

.page-index-how-to-register__image--small {
  max-width: 70%;
}

.page-index-how-to-register__image--large {
  max-width: 90%;
}

.page-index-how-to-register__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-index-how-to-register__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-how-to-register__list li::before {
  content: '✔';
  color: #FFCC00; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-index-how-to-register__list--nested li::before {
  content: '•';
  color: #003366; /* Deep blue bullet */
}

.page-index-how-to-register__step {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-how-to-register__step-number {
  background-color: #003366; /* Deep blue */
  color: #FFCC00; /* Gold number */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-how-to-register__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-how-to-register__step p {
  margin-bottom: 15px;
}

.page-index-how-to-register__final-note,
.page-index-how-to-register__final-cta {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  font-weight: bold;
  color: #003366;
}

.page-index-how-to-register__center-content {
  text-align: center;
  margin-top: 30px;
}

.page-index-how-to-register__accordion {
  margin-top: 30px;
}

.page-index-how-to-register__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-how-to-register__accordion-header {
  background-color: #003366; /* Deep blue */
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-how-to-register__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-how-to-register__accordion-header.active {
  background-color: #002244; /* Slightly darker blue */
}

.page-index-how-to-register__accordion-header.active::after {
  transform: rotate(45deg);
}

.page-index-how-to-register__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-how-to-register__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555555;
}

.page-index-how-to-register__accordion-header.active + .page-index-how-to-register__accordion-content {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-how-to-register__hero-title {
    font-size: 2.8em;
  }

  .page-index-how-to-register__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-how-to-register__section-title {
    font-size: 2em;
  }

  .page-index-how-to-register__flex-container {
    flex-direction: column;
  }

  .page-index-how-to-register__flex-container--reverse {
    flex-direction: column;
  }

  .page-index-how-to-register__image-block {
    margin-top: 30px;
  }

  .page-index-how-to-register__image--small {
    max-width: 90%;
  }

  .page-index-how-to-register__image--large {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-how-to-register__hero-section {
    padding: 80px 0;
  }

  .page-index-how-to-register__hero-title {
    font-size: 2.2em;
  }

  .page-index-how-to-register__hero-subtitle {
    font-size: 1em;
  }

  .page-index-how-to-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-how-to-register__section {
    padding: 40px 0;
  }

  .page-index-how-to-register__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-index-how-to-register__step {
    padding: 20px;
  }

  .page-index-how-to-register__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-index-how-to-register__step-title {
    font-size: 1.5em;
  }

  .page-index-how-to-register__list li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-how-to-register__hero-section {
    padding: 60px 0;
  }

  .page-index-how-to-register__hero-title {
    font-size: 1.8em;
  }

  .page-index-how-to-register__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-how-to-register__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-index-how-to-register__section {
    padding: 30px 0;
  }

  .page-index-how-to-register__section-title {
    font-size: 1.5em;
    margin-bottom: 25px;
  }

  .page-index-how-to-register__step-title {
    font-size: 1.3em;
  }

  .page-index-how-to-register__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-index-how-to-register__accordion-content {
    padding: 0 20px;
  }

  .page-index-how-to-register__accordion-content p {
    padding: 10px 0;
  }
}