:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-color: #EA7C07;
  --background-light: #FFFFFF;
  --border-color: #e0e0e0;
}

.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  padding-top: var(--header-offset, 120px);
}

.page-register img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-register__section {
  padding: 60px 20px;
  text-align: center;
}

.page-register__section--why-register,
.page-register__section--benefits,
.page-register__section--promotions,
.page-register__section--conclusion {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-register__section--how-to-register,
.page-register__section--security,
.page-register__section--app-download {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-register__section--contact {
  background-color: var(--background-light);
  color: var(--text-dark);
}

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

.page-register__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit;
}

.page-register__section--how-to-register .page-register__section-title,
.page-register__section--security .page-register__section-title,
.page-register__section--app-download .page-register__section-title {
  color: var(--text-light);
}

.page-register__section-intro {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: inherit;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 50%, rgba(255,255,255,0.8) 100%);
  overflow: hidden;
}

.page-register__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-register__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-register__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  min-height: 200px;
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-top: -80px;
}

.page-register__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button,
.page-register__btn-primary,
.page-register__btn-secondary,
.page-register a[class*="button"],
.page-register a[class*="btn"] {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__cta-button.page-register__btn-primary,
.page-register__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-register__cta-button.page-register__btn-primary:hover,
.page-register__btn-primary:hover {
  background: #1F87B4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-register__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-register__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-register__feature-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
  color: var(--text-dark);
  min-height: 200px;
}

.page-register__feature-item:hover {
  transform: translateY(-5px);
}

.page-register__feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-register__feature-text {
  font-size: 16px;
  color: var(--text-dark);
}

.page-register__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-register__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: var(--text-light);
  min-height: 200px;
}

.page-register__step-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-register__step-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.page-register__step-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-register__step-list li {
  margin-bottom: 5px;
}

.page-register__guide-image {
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  min-height: 200px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__benefit-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}