.page-register {
  color: #F3F8FF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #08162B;
  padding-bottom: 40px;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  background-color: #113B7A;
  overflow: hidden;
}

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

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/5;
}

.page-register__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-register__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-register__description {
  font-size: 1rem;
  color: #AFC4E8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

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

.page-register__section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #F2C14E;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.page-register__process-section,
.page-register__benefits-section,
.page-register__faq-section,
.page-register__cta-bottom-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-register__process-step {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-register__step-title {
  font-size: 1.4rem;
  color: #F3F8FF;
  margin-bottom: 10px;
}

.page-register__step-description {
  font-size: 0.95rem;
  color: #AFC4E8;
}

.page-register__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-register__benefits-item {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-register__benefits-icon {
  font-size: 1.5rem;
  color: #4FA8FF;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-register__benefits-text {
  font-size: 1rem;
  color: #F3F8FF;
  margin: 0;
}

.page-register__faq-item {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-register__faq-question {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-register__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: #4FA8FF;
  transition: transform 0.3s ease;
}

.page-register__faq-item.active .page-register__faq-question::after {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  font-size: 0.95rem;
  color: #AFC4E8;
  display: none;
  margin-top: 10px;
}

.page-register__faq-item.active .page-register__faq-answer {
  display: block;
}

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

.page-register__cta-button--large {
  padding: 16px 35px;
  font-size: 1.2rem;
  margin-top: 20px;
}

@media (max-width: 849px) {
  .page-register__hero-section {
    padding-bottom: 30px;
  }

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

  .page-register__section-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-register__process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-register__benefits-item,
  .page-register__faq-item {
    padding: 15px 20px;
  }

  .page-register__benefits-icon {
    font-size: 1.3rem;
    margin-right: 10px;
  }

  .page-register__benefits-text,
  .page-register__step-description,
  .page-register__faq-answer {
    font-size: 0.9rem;
  }

  .page-register__step-title {
    font-size: 1.2rem;
  }

  .page-register__faq-question {
    font-size: 1.1rem;
  }

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

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

@media (max-width: 768px) {
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-register__process-section img,
  .page-register__benefits-section img,
  .page-register__faq-section img,
  .page-register__cta-bottom-section img {
    max-width: 100%;
    height: auto;
  }

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

  .page-register__process-section,
  .page-register__benefits-section,
  .page-register__faq-section,
  .page-register__cta-bottom-section {
    padding: 15px;
  }
}

@media (max-width: 549px) {
  .page-register__main-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }

  .page-register__description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .page-register__section-title {
    font-size: clamp(1.2rem, 6.5vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-register__process-step {
    padding: 20px;
  }

  .page-register__step-title {
    font-size: 1.1rem;
  }

  .page-register__benefits-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .page-register__benefits-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-register__benefits-text {
    font-size: 0.85rem;
  }

  .page-register__faq-question {
    font-size: 1rem;
  }

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