.page-registration-guide-step2 {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-registration-guide-step2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-guide-step2__hero {
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Adjusted gradient for better contrast with gold */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-guide-step2__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,s666,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-registration-guide-step2__hero > div {
  position: relative;
  z-index: 1;
}

.page-registration-guide-step2__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-guide-step2__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-guide-step2__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Deep blue text on gold */
  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-guide-step2__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-registration-guide-step2__button--center {
  display: block;
  margin: 40px auto;
  max-width: 300px;
}

.page-registration-guide-step2__section {
  padding: 80px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-registration-guide-step2__section:nth-of-type(even) {
  background-color: #fff;
}

.page-registration-guide-step2__section-title {
  font-size: 2.5em;
  color: #0047AB; /* Deep blue title */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-registration-guide-step2__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-registration-guide-step2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-registration-guide-step2__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-registration-guide-step2__grid-item:hover {
  transform: translateY(-10px);
}

.page-registration-guide-step2__grid-item h3 {
  color: #0047AB;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-registration-guide-step2__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-registration-guide-step2__method-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  overflow: hidden;
}

.page-registration-guide-step2__method-card--reverse {
  flex-direction: row-reverse;
}

.page-registration-guide-step2__method-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.page-registration-guide-step2__method-content {
  flex-grow: 1;
  padding: 40px;
}

.page-registration-guide-step2__method-content h3 {
  color: #0047AB;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-registration-guide-step2__method-content ol, .page-registration-guide-step2__method-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
  list-style-type: decimal;
}

.page-registration-guide-step2__method-content ul {
  list-style-type: disc;
}

.page-registration-guide-step2__method-content li {
  margin-bottom: 10px;
}

.page-registration-guide-step2__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 30px;
  color: #0047AB;
  font-weight: bold;
}

.page-registration-guide-step2__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-registration-guide-step2__list li {
  background-color: #e0f2f7; /* Light blue background for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 50px;
  color: #333;
}

.page-registration-guide-step2__list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 20px;
  color: #0047AB; /* Deep blue checkmark */
  font-size: 1.5em;
  font-weight: bold;
}

.page-registration-guide-step2__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-registration-guide-step2__faq-item h3 {
  color: #0047AB;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-registration-guide-step2__faq-item p {
  color: #555;
}

.page-registration-guide-step2__highlight {
  color: #0047AB; /* Deep blue for highlights */
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-registration-guide-step2__title {
    font-size: 2.5em;
  }
  .page-registration-guide-step2__subtitle {
    font-size: 1.2em;
  }
  .page-registration-guide-step2__method-card {
    flex-direction: column;
  }
  .page-registration-guide-step2__method-card--reverse {
    flex-direction: column;
  }
  .page-registration-guide-step2__method-image {
    max-width: 100%;
  }
  .page-registration-guide-step2__method-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-registration-guide-step2__hero {
    padding: 80px 0;
  }
  .page-registration-guide-step2__title {
    font-size: 2em;
  }
  .page-registration-guide-step2__subtitle {
    font-size: 1em;
  }
  .page-registration-guide-step2__section {
    padding: 60px 0;
  }
  .page-registration-guide-step2__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-registration-guide-step2__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-registration-guide-step2__hero {
    padding: 60px 0;
  }
  .page-registration-guide-step2__title {
    font-size: 1.8em;
  }
  .page-registration-guide-step2__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-registration-guide-step2__section {
    padding: 40px 0;
  }
  .page-registration-guide-step2__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-registration-guide-step2__method-content {
    padding: 20px;
  }
  .page-registration-guide-step2__method-content h3 {
    font-size: 1.5em;
  }
  .page-registration-guide-step2__list li {
    padding: 15px 20px 15px 45px;
  }
  .page-registration-guide-step2__list li::before {
    left: 15px;
    top: 15px;
    font-size: 1.2em;
  }
  .page-registration-guide-step2__faq-item {
    padding: 20px;
  }
  .page-registration-guide-step2__faq-item h3 {
    font-size: 1.2em;
  }
}