/* style/register-login-registration-steps.css */
.page-register-login-registration-steps {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for general content */
}

.page-register-login-registration-steps__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-registration-steps__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-register-login-registration-steps__hero .page-register-login-registration-steps__container {
  position: relative;
  z-index: 1;
}

.page-register-login-registration-steps__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for title emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-registration-steps__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-registration-steps__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-register-login-registration-steps__btn--primary {
  background-color: #ffc107; /* Auxiliary color for primary button */
  color: #0056b3; /* Darker blue for text contrast */
}

.page-register-login-registration-steps__btn--primary:hover {
  background-color: #e0a800;
  color: #003e80;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-steps__btn--secondary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-register-login-registration-steps__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-steps__btn--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-register-login-registration-steps__section {
  padding: 60px 0;
  text-align: center;
}

.page-register-login-registration-steps__section--intro {
  background-color: #ffffff;
}

.page-register-login-registration-steps__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-register-login-registration-steps__heading {
  font-size: 2.2em;
  color: #007bff; /* Primary color for main headings */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-register-login-registration-steps__paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-registration-steps__paragraph--small {
  font-size: 0.9em;
  color: #777777;
  margin-top: 15px;
}

.page-register-login-registration-steps__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-register-login-registration-steps__feature-item {
  flex-basis: calc(33% - 20px);
  background-color: #f0f8ff; /* Lighter blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-registration-steps__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-register-login-registration-steps__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-register-login-registration-steps__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-register-login-registration-steps__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-register-login-registration-steps__step-item {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  border-left: 5px solid #ffc107; /* Highlight with auxiliary color */
}

.page-register-login-registration-steps__step-item:last-child {
  margin-bottom: 0;
}

.page-register-login-registration-steps__step-item::before {
  content: attr(data-step-number);
  position: absolute;
  top: 20px;
  left: -25px;
  background-color: #007bff;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-steps__step-item:nth-child(1)::before { content: '1'; }
.page-register-login-registration-steps__step-item:nth-child(2)::before { content: '2'; }
.page-register-login-registration-steps__step-item:nth-child(3)::before { content: '3'; }
.page-register-login-registration-steps__step-item:nth-child(4)::before { content: '4'; }

.page-register-login-registration-steps__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  padding-left: 30px; /* Make space for the step number */
}

.page-register-login-registration-steps__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-register-login-registration-steps__list {
  list-style-type: disc;
  padding-left: 40px;
  margin-bottom: 20px;
  text-align: left;
  color: #555555;
}

.page-register-login-registration-steps__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-register-login-registration-steps__list--checklist {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

.page-register-login-registration-steps__list--checklist li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-register-login-registration-steps__list--checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745; /* Green for checkmark */
  font-weight: bold;
  font-size: 1.4em;
  top: -2px;
}

.page-register-login-registration-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register-login-registration-steps__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-registration-steps__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-register-login-registration-steps__grid-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-register-login-registration-steps__grid-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-register-login-registration-steps__grid-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 15px;
}

.page-register-login-registration-steps__link {
  color: #ffc107; /* Auxiliary color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register-login-registration-steps__link:hover {
  color: #e0a800;
  text-decoration: underline;
}

.page-register-login-registration-steps__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-registration-steps__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register-login-registration-steps__faq-question {
  font-size: 1.3em;
  color: #007bff;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f8ff; /* Light blue background for questions */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-register-login-registration-steps__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
}

.page-register-login-registration-steps__faq-question.active::after {
  content: '-';
}

.page-register-login-registration-steps__faq-question:hover {
  background-color: #e6f0ff;
}

.page-register-login-registration-steps__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register-login-registration-steps__faq-answer.active {
  max-height: 300px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
}

.page-register-login-registration-steps__faq-answer p {
  margin: 0;
  color: #555555;
  font-size: 1em;
}

.page-register-login-registration-steps__section--conclusion {
  background: linear-gradient(135deg, #007bff 0%, #ffc107 100%);
  color: #ffffff;
  padding: 80px 0;
}

.page-register-login-registration-steps__section--conclusion .page-register-login-registration-steps__heading {
  color: #ffffff;
}

.page-register-login-registration-steps__section--conclusion .page-register-login-registration-steps__paragraph {
  color: #f0f0f0;
}

@media (max-width: 992px) {
  .page-register-login-registration-steps__title {
    font-size: 2.2em;
  }
  .page-register-login-registration-steps__heading {
    font-size: 1.8em;
  }
  .page-register-login-registration-steps__feature-item {
    flex-basis: calc(50% - 20px);
  }
  .page-register-login-registration-steps__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-register-login-registration-steps__hero {
    padding: 60px 0;
  }
  .page-register-login-registration-steps__title {
    font-size: 1.8em;
  }
  .page-register-login-registration-steps__subtitle {
    font-size: 1.1em;
  }
  .page-register-login-registration-steps__section {
    padding: 40px 0;
  }
  .page-register-login-registration-steps__heading {
    font-size: 1.6em;
  }
  .page-register-login-registration-steps__feature-item {
    flex-basis: 100%;
  }
  .page-register-login-registration-steps__step-item {
    padding: 30px 20px 30px 40px;
  }
  .page-register-login-registration-steps__step-title {
    font-size: 1.5em;
    padding-left: 20px;
  }
  .page-register-login-registration-steps__step-item::before {
    top: 15px;
    left: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  .page-register-login-registration-steps__grid {
    grid-template-columns: 1fr;
  }
  .page-register-login-registration-steps__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register-login-registration-steps__faq-answer.active {
    padding: 10px 20px 20px;
  }
}