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

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

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
  color: #FFFFFF;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  object-fit: cover;
}

.page-register__hero-container {
  position: relative;
}

.page-register__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: calc(100% - 40px);
}

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

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-register__cta-button:hover {
  background-color: #FCBC45;
  transform: translateY(-2px);
}

.page-register__cta-button--centered {
  display: block;
  margin: 40px auto;
  max-width: 300px;
  text-align: center;
}

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

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

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

.page-register__value-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-register__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

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

.page-register__feature-description {
  font-size: 1em;
  color: #666666;
}

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

.page-register__registration-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-register__step-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 100px;
}

.page-register__step-number {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  background-color: #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register__step-title {
  font-size: 1.7em;
  color: #000000;
  margin-bottom: 10px;
}

.page-register__step-description {
  font-size: 1em;
  color: #555555;
}

.page-register__conditions-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-register__conditions-list {
  list-style: disc;
  padding-left: 30px;
  margin: 0 auto;
  max-width: 900px;
}

.page-register__condition-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-register__condition-item strong {
  color: #000000;
}

.page-register__conditions-section a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__conditions-section a:hover {
  color: #000000;
}

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

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

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

.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;
  background-color: #e0e0e0;
  border-bottom: 1px solid #d0d0d0;
  transition: background-color 0.3s ease;
}

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

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

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

.page-register__faq-answer {
  padding: 20px 25px;
  background-color: #f9f9f9;
  color: #555555;
  font-size: 1em;
}

.page-register__cta-bottom-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-register__cta-bottom-container {
  max-width: 900px;
}

.page-register__cta-bottom-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-register__cta-bottom-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2em;
  }

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

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

  .page-register__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

  .page-register__section-text {
    font-size: 0.95em;
  }

  .page-register__features-grid {
    grid-template-columns: 1fr;
  }

  .page-register__step-item {
    padding-left: 80px;
  }

  .page-register__step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
    left: 20px;
    top: 20px;
  }

  .page-register__step-title {
    font-size: 1.5em;
  }

  .page-register__condition-item, .page-register__faq-question, .page-register__faq-answer p {
    font-size: 0.95em;
  }

  .page-register__cta-bottom-title {
    font-size: 2em;
  }

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

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

  .page-register__hero-content {
    width: calc(100% - 20px);
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.6em;
  }

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

  .page-register__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-register__section-title {
    font-size: 1.8em;
  }

  .page-register__step-item {
    padding-left: 70px;
  }

  .page-register__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
    left: 15px;
    top: 15px;
  }

  .page-register__cta-bottom-title {
    font-size: 1.8em;
  }
  .page-register__hero-image, .page-register__feature-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}