.page-index-quick-registration {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0d1242; /* Darker background based on main color */
}

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

.page-index-quick-registration__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-quick-registration__section--benefits, .page-index-quick-registration__section--review, .page-index-quick-registration__section--faq {
  background-color: #1A237E; /* Main color as background */
}

.page-index-quick-registration__section--guide, .page-index-quick-registration__section--promos, .page-index-quick-registration__section--app, .page-index-quick-registration__section--cta-final {
  background-color: #0d1242; /* Darker background for contrast */
}

.page-index-quick-registration__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__section-description {
  font-size: 1.15em;
  color: #B0BEC5; /* Slightly lighter grey for descriptions */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-quick-registration__hero {
  background: linear-gradient(135deg, #1A237E 0%, #0d1242 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-quick-registration__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-index-quick-registration__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-quick-registration__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-index-quick-registration__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 900;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-index-quick-registration__hero-subtitle {
  font-size: 1.5em;
  color: #CFD8DC; /* Light blue-grey for subtitle */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-quick-registration__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-quick-registration__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-quick-registration__button--primary {
  background-color: #FFD700;
  color: #1A237E;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-quick-registration__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-quick-registration__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-index-quick-registration__button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-index-quick-registration__button--small {
  padding: 10px 25px;
  font-size: 0.95em;
  border-radius: 30px;
}

.page-index-quick-registration__button--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

.page-index-quick-registration__button--link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 20px;
  font-size: 0.9em;
  border-radius: 20px;
}

.page-index-quick-registration__button--link:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-index-quick-registration__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-quick-registration__benefit-item {
  background-color: #283593; /* Slightly lighter main color */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-registration__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-index-quick-registration__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-quick-registration__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-quick-registration__benefit-text {
  font-size: 1em;
  color: #CFD8DC;
}

.page-index-quick-registration__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-index-quick-registration__step-item {
  background-color: #1A237E;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-quick-registration__step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.2);
  line-height: 1;
}

.page-index-quick-registration__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-index-quick-registration__step-text {
  font-size: 1em;
  color: #CFD8DC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-quick-registration__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__tips {
  background-color: #283593;
  padding: 30px;
  border-radius: 15px;
  margin-top: 60px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__tips-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-quick-registration__tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-quick-registration__tips li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-index-quick-registration__tips li:last-child {
  margin-bottom: 0;
}

.page-index-quick-registration__tips li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-index-quick-registration__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-quick-registration__promo-item {
  background-color: #1A237E;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-registration__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-index-quick-registration__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-quick-registration__promo-text {
  font-size: 1em;
  color: #CFD8DC;
  margin-bottom: 25px;
}

.page-index-quick-registration__cta-promo {
  background-color: #283593;
  padding: 40px;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-quick-registration__cta-text {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: 500;
}

.page-index-quick-registration__app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-index-quick-registration__app-content {
  flex: 1;
}

.page-index-quick-registration__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-quick-registration__app-image {
  max-width: 80%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-quick-registration__app-benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-quick-registration__app-benefits-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-index-quick-registration__app-benefits-list li::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-index-quick-registration__review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-quick-registration__review-item {
  background-color: #283593;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.page-index-quick-registration__review-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-quick-registration__review-text {
  font-size: 1em;
  color: #CFD8DC;
  margin-bottom: 20px;
}

.page-index-quick-registration__review-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-index-quick-registration__faq-item {
  background-color: #283593;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-quick-registration__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-quick-registration__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-quick-registration__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-quick-registration__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-index-quick-registration__section--cta-final {
  background: linear-gradient(135deg, #FFD700 0%, #e5c100 100%);
  padding: 80px 0;
  color: #1A237E; /* Dark text on light background */
}

.page-index-quick-registration__section--cta-final .page-index-quick-registration__section-title {
  color: #1A237E;
  text-shadow: none;
}

.page-index-quick-registration__section--cta-final .page-index-quick-registration__section-description {
  color: #283593;
}

.page-index-quick-registration__section--cta-final .page-index-quick-registration__button--primary {
  background-color: #1A237E;
  color: #FFD700;
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.page-index-quick-registration__section--cta-final .page-index-quick-registration__button--primary:hover {
  background-color: #0d1242;
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.6);
}

@media (max-width: 992px) {
  .page-index-quick-registration__hero-title {
    font-size: 3em;
  }
  .page-index-quick-registration__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-quick-registration__section-title {
    font-size: 2.2em;
  }
  .page-index-quick-registration__app-flex {
    flex-direction: column;
  }
  .page-index-quick-registration__app-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-quick-registration__hero {
    padding: 80px 0;
  }
  .page-index-quick-registration__hero-title {
    font-size: 2.5em;
  }
  .page-index-quick-registration__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-quick-registration__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-quick-registration__button {
    width: 80%;
    max-width: 300px;
  }
  .page-index-quick-registration__section {
    padding: 40px 0;
  }
  .page-index-quick-registration__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration__section-description {
    font-size: 1em;
  }
  .page-index-quick-registration__benefit-title, .page-index-quick-registration__promo-title, .page-index-quick-registration__review-title {
    font-size: 1.4em;
  }
  .page-index-quick-registration__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-quick-registration__hero-title {
    font-size: 2em;
  }
  .page-index-quick-registration__hero-subtitle {
    font-size: 0.95em;
  }
  .page-index-quick-registration__section-title {
    font-size: 1.6em;
  }
  .page-index-quick-registration__button {
    width: 90%;
  }
  .page-index-quick-registration__benefit-item, .page-index-quick-registration__promo-item, .page-index-quick-registration__review-item, .page-index-quick-registration__step-item {
    padding: 20px;
  }
  .page-index-quick-registration__app-image {
    max-width: 95%;
  }
  .page-index-quick-registration__cta-promo {
    padding: 30px;
  }
  .page-index-quick-registration__cta-text {
    font-size: 1.1em;
  }
}