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

.page-register__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #000000;
  color: #FFFFFF;
}

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

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

.page-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-register__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

.page-register__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-register__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-register__button--secondary {
  background-color: #333333;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-register__button--secondary:hover {
  background-color: #555555;
  transform: translateY(-3px);
}

.page-register__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 60px;
  color: #000000;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-register__value-section {
  padding: 80px 20px;
  background-color: #F8F8F8;
}

.page-register__value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-register__value-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-register__value-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-register__value-heading {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-register__value-text {
  font-size: 1.1em;
  color: #555555;
}

.page-register__steps-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-register__steps-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-register__steps-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-register__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-register__step-number {
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-register__step-heading {
  font-size: 1.6em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1.1em;
  color: #555555;
}

.page-register__conditions-section {
  padding: 80px 20px;
  background-color: #F8F8F8;
}

.page-register__conditions-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: disc inside;
  font-size: 1.1em;
  color: #333333;
  line-height: 2;
}

.page-register__conditions-item {
  margin-bottom: 10px;
}

.page-register__conditions-item a {
  color: #000000;
  text-decoration: underline;
}

.page-register__conditions-item a:hover {
  color: #FCBC45;
}

.page-register__faq-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

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

.page-register__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-register__faq-question:hover {
  background-color: #EFEFEF;
}

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

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

.page-register__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.1em;
  color: #555555;
}

.page-register__cta-section {
  padding: 100px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-register__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.page-register__cta-description {
  font-size: 1.3em;
  margin-bottom: 50px;
  color: #E0E0E0;
}

.page-register__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 250px;
}

@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3em;
  }
  .page-register__hero-description {
    font-size: 1.2em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__value-icon {
    width: 180px;
    height: 180px;
  }
  .page-register__steps-image {
    max-width: 400px;
  }
  .page-register__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 120px);
  }
  .page-register__hero-section {
    padding: 60px 15px;
  }
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-register__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section, .page-register__cta-section {
    padding: 60px 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-register__steps-content {
    flex-direction: column;
    gap: 40px;
  }
  .page-register__steps-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-number {
    margin-bottom: 10px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-register__cta-title {
    font-size: 2em;
  }
  .page-register__cta-description {
    font-size: 1.1em;
  }
  .page-register__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Ensure all images within .page-register are responsive and don't overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}