/* style/index-registration-process.css */
.page-index-registration-process {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-index-registration-process__hero {
  background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Darker blue to slightly lighter blue */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-registration-process__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.page-index-registration-process__hero .page-index-registration-process__container {
  position: relative;
  z-index: 2;
}

.page-index-registration-process__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E3B23C; /* Wealth gold for emphasis */
  line-height: 1.2;
}

.page-index-registration-process__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #DDEEFF; /* Lighter blue for body text */
}

.page-index-registration-process__cta-button {
  display: inline-block;
  background-color: #E3B23C; /* Wealth gold */
  color: #0A2463; /* Tech blue for text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E3B23C;
}

.page-index-registration-process__cta-button:hover {
  background-color: #F0C45C; /* Slightly lighter gold */
  transform: translateY(-3px);
  color: #0A2463;
}

.page-index-registration-process__cta-button--secondary {
  background-color: transparent;
  color: #E3B23C;
  border: 2px solid #E3B23C;
}

.page-index-registration-process__cta-button--secondary:hover {
  background-color: #E3B23C;
  color: #0A2463;
}

/* Sections */
.page-index-registration-process__section {
  padding: 60px 0;
}

.page-index-registration-process__section:nth-of-type(even) {
  background-color: #EBF2F7; /* Light grey-blue for alternating sections */
}

.page-index-registration-process__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Tech blue */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-registration-process__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* Steps Section */
.page-index-registration-process__steps {
  background-color: #FFFFFF;
}

.page-index-registration-process__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  border-radius: 10px;
  background-color: #fcfcfc;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-process__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-registration-process__step-number {
  width: 60px;
  height: 60px;
  background-color: #0A2463; /* Tech blue */
  color: #E3B23C; /* Wealth gold */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process__step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-index-registration-process__step-item p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-index-registration-process__step-item ul {
  text-align: left;
  margin-top: 15px;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #444;
}

.page-index-registration-process__step-item ul li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-index-registration-process__step-item strong {
  color: #0A2463;
}

.page-index-registration-process__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-registration-process__inline-cta {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E3B23C;
}

.page-index-registration-process__inline-cta:hover {
  background-color: #F0C45C;
  transform: translateY(-2px);
  color: #0A2463;
}

/* Benefits Section */
.page-index-registration-process__benefits {
  background-color: #0A2463;
  color: #FFFFFF;
}

.page-index-registration-process__benefits .page-index-registration-process__section-title {
  color: #E3B23C;
}

.page-index-registration-process__benefits .page-index-registration-process__section-description {
  color: #DDEEFF;
}

.page-index-registration-process__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-registration-process__benefit-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #DDEEFF;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-process__benefit-list li:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.page-index-registration-process__benefit-list li strong {
  color: #E3B23C;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-index-registration-process__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-index-registration-process__faq {
  background-color: #F8F8F8;
}

.page-index-registration-process__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-index-registration-process__faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.page-index-registration-process__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: 600;
}

.page-index-registration-process__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E3B23C;
  transition: transform 0.3s ease;
}

.page-index-registration-process__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-registration-process__faq-answer {
  font-size: 1.05em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

.page-index-registration-process__faq-answer.active {
  max-height: 500px; /* Adjust based on expected content length */
  padding-top: 15px;
}

/* App Download Section */
.page-index-registration-process__app-download {
  background: linear-gradient(to right, #0A2463, #1A3E7A);
  color: #FFFFFF;
}

.page-index-registration-process__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-index-registration-process__app-text {
  max-width: 700px;
}

.page-index-registration-process__app-text .page-index-registration-process__section-title {
  color: #E3B23C;
}

.page-index-registration-process__app-text .page-index-registration-process__section-description {
  color: #DDEEFF;
  margin-bottom: 30px;
}

.page-index-registration-process__app-image-wrapper {
    width: 100%;
    max-width: 400px; /* Limit image width */
    margin-top: 30px;
}

.page-index-registration-process__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.page-index-registration-process__contact {
  background-color: #EBF2F7;
}

.page-index-registration-process__contact .page-index-registration-process__section-title {
  color: #0A2463;
}

.page-index-registration-process__contact .page-index-registration-process__section-description {
  color: #555;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-index-registration-process__step-item {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .page-index-registration-process__step-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-index-registration-process__step-item .page-index-registration-process__step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .page-index-registration-process__step-item .page-index-registration-process__step-title {
    text-align: left;
  }

  .page-index-registration-process__step-item p {
    text-align: left;
  }

  .page-index-registration-process__step-item ul {
    padding-left: 40px;
  }

  .page-index-registration-process__app-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }

  .page-index-registration-process__app-text {
    max-width: 50%;
    text-align: left;
  }

  .page-index-registration-process__app-image-wrapper {
    width: 45%;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .page-index-registration-process__title {
    font-size: 2.2em;
  }

  .page-index-registration-process__subtitle {
    font-size: 1em;
  }

  .page-index-registration-process__section-title {
    font-size: 1.8em;
  }

  .page-index-registration-process__step-title {
    font-size: 1.4em;
  }

  .page-index-registration-process__step-item {
    padding: 25px;
  }

  .page-index-registration-process__benefit-list {
    grid-template-columns: 1fr;
  }

  .page-index-registration-process__faq-question {
    font-size: 1.2em;
  }
}