.page-register {
  color: #ffffff;
}

.page-register__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background-color: #007bff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-register__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-register__hero-title {
  font-size: 3.2em;
  color: #ffc107;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-register__btn {
  display: inline-block;
  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;
  white-space: nowrap;
}

.page-register__btn--primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

.page-register__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-register__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-register__btn--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-3px);
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-register__section-title {
  font-size: 2.5em;
  color: #ffc107;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-register__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section {
  padding: 60px 0;
  background-color: #343a40;
}

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

.page-register__feature-item {
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

.page-register__feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(0, 123, 255, 0.2);
}

.page-register__feature-image {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px;
  border-radius: 10px;
  display: block;
}

.page-register__feature-title {
  font-size: 1.8em;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-register__feature-text {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
}

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

.page-register__step-item {
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: left;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.page-register__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #ffc107;
  color: #007bff;
  font-size: 2.5em;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.page-register__step-title {
  font-size: 1.8em;
  color: #ffc107;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-register__step-text {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-register__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0;
  background-color: rgba(0, 123, 255, 0.15);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.4);
}

.page-register__condition-item {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.page-register__condition-item::before {
  content: '✓';
  color: #ffc107;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.3em;
  top: 0;
}

.page-register__inline-link {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-register__inline-link:hover {
  text-decoration: underline;
}

.page-register__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffc107;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-register__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px);
  }
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__container {
    padding: 30px 15px;
  }
  .page-register__feature-item, .page-register__step-item {
    padding: 25px;
  }
  .page-register__step-item::before {
    font-size: 2em;
    width: 60px;
    height: 60px;
    top: -15px;
    left: 15px;
  }
  .page-register__step-title {
    margin-top: 35px;
    font-size: 1.5em;
  }
  .page-register__conditions-list, .page-register__faq-list {
    padding: 20px;
  }
  .page-register__condition-item {
    font-size: 1em;
    padding-left: 25px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-register__faq-answer {
    padding: 0 15px 15px;
  }
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-register__feature-image {
    max-width: 200px;
  }
}