.page-register {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 40px;
  max-width: 1390px;
  margin: 0 auto;
  text-align: center;
}

.page-register__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-register__hero-content {
  max-width: 800px;
}

.page-register__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #1F2D3D;
  letter-spacing: -0.02em;
}

.page-register__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-register__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-register__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-register__steps-section, .page-register__benefits-section, .page-register__security-section, .page-register__faq-section, .page-register__cta-final-section {
  max-width: 1390px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-register__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-register__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-register__step-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-register__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-register__step-description {
  font-size: 1em;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-register__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-register__benefit-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-register__benefit-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-register__benefit-description {
  font-size: 1em;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-register__security-text {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #1F2D3D;
}

.page-register__security-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register__security-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-register__security-link:hover {
  color: #6FA3FF;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #1F2D3D;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-register__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-register__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-register__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-register__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 20px 20px;
}

.page-register__faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-register__cta-final-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-register__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 10px 15px 30px;
  }

  .page-register__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-register__hero-description {
    font-size: 1em;
  }

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

  .page-register__section-title {
    font-size: clamp(1.6em, 5vw, 2em);
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-register__steps-section, .page-register__benefits-section, .page-register__security-section, .page-register__faq-section, .page-register__cta-final-section {
    padding: 30px 15px;
  }

  .page-register__step-card, .page-register__benefit-card {
    padding: 20px;
  }

  .page-register__step-image {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }

  .page-register__security-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-register__faq-answer.open {
    padding: 10px 15px 15px;
  }

  .page-register__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-register img {
    max-width: 100%;
    height: auto;
  }
}