.page-register {
  color: #333333; /* Dark text for default light body background */
}

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

.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #1E90FF 0%, #FFD700 100%);
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-register__hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-register__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-register__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Deep Blue */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-register__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-register__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1E90FF; /* Deep Blue */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-register__section-intro {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section, .page-register__cta-section {
  padding: 60px 0;
}

.page-register__value-section {
  background-color: #f9f9f9;
}

.page-register__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
}

.page-register__benefit-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-size: 1.05em;
  line-height: 1.5;
  color: #333333;
  border-left: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-register__action-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #1E90FF; /* Deep Blue */
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-register__action-button:hover {
  background-color: #1565b3;
}

.page-register__steps-section {
  background-color: #ffffff;
}

.page-register__steps-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #f0f8ff; /* Light Blue */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-register__step-number {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Deep Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.3em;
  flex-shrink: 0;
}

.page-register__step-item h3 {
  margin: 0;
  font-size: 1.4em;
  color: #1E90FF;
}

.page-register__step-item p {
  margin-top: 10px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-register__steps-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-register__conditions-section {
  background-color: #f9f9f9;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.page-register__condition-item {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  line-height: 1.5;
  color: #333333;
  position: relative;
  padding-left: 35px;
}

.page-register__condition-item::before {
  content: '✓';
  color: #FFD700; /* Gold */
  font-weight: 700;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.page-register__action-link {
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;
  color: #1E90FF; /* Deep Blue */
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-register__action-link:hover {
  color: #0056b3;
}

.page-register__faq-section {
  background-color: #ffffff;
}

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

.page-register__faq-item {
  background-color: #f0f8ff; /* Light Blue */
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #1E90FF; /* Deep Blue */
  cursor: pointer;
  user-select: none;
  background-color: #e6f2ff;
  border-bottom: 1px solid #d4e8ff;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-item[open] .page-register__faq-question {
  background-color: #cce0ff;
}

.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: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-register__faq-answer p {
  margin: 0;
}

.page-register__cta-section {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  color: #1E90FF; /* Deep Blue */
  text-align: center;
  padding: 80px 0;
}

.page-register__cta-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-register__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #2a73c2;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #1E90FF; /* Deep Blue */
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button:hover {
  background-color: #1565b3;
  transform: translateY(-4px);
}

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

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

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

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

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

  .page-register__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-register__hero-image, .page-register__steps-image {
    max-width: 100%;
    height: auto;
  }

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

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

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

  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-register__step-number {
    margin-bottom: 15px;
  }

  .page-register__faq-question {
    font-size: 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__cta-button {
    padding: 15px 40px;
    font-size: 1.1em;
  }
}

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

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

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

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