.page-register {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #3A1C71;
  padding: 0;
  color: #ffffff;
}

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

.page-register__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-register__hero-content {
  max-width: 800px;
}

.page-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #D72638; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-register__button--primary {
  background-color: #D72638; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #D72638;
}

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

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

.page-register__button--secondary:hover {
  background-color: rgba(215, 38, 56, 0.1);
  transform: translateY(-2px);
}

.page-register__section-title {
  font-size: 2.5em;
  color: #3A1C71;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-register__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  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;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

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

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

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

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

.page-register__value-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-register__value-heading {
  font-size: 1.5em;
  color: #3A1C71;
  margin-bottom: 15px;
}

.page-register__value-text {
  color: #666666;
  font-size: 0.95em;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.page-register__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border-left: 5px solid #D72638;
  display: flex;
  flex-direction: column;
}

.page-register__step-heading {
  font-size: 1.6em;
  color: #3A1C71;
  margin-bottom: 10px;
}

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

.page-register__button--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 250px;
  text-align: center;
}

.page-register__conditions-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__condition-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-register__condition-item::marker {
  color: #D72638;
}

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

.page-register__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #3A1C71;
  cursor: pointer;
  background-color: #fdfdfd;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-item[open] .page-register__faq-question {
  background-color: #f5f5f5;
  border-bottom-color: #D72638;
}

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

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

.page-register__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #666666;
  border-top: 1px solid #f0f0f0;
}

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

.page-register__cta-section {
  background-color: #3A1C71;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-register__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #D72638;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-register__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-register__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

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

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

  .page-register__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-register__button {
    width: 100%;
    max-width: 300px;
  }

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

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

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

  .page-register__step-heading {
    font-size: 1.4em;
  }

  .page-register__condition-item {
    font-size: 1em;
  }

  .page-register__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-register__faq-answer {
    padding: 15px 20px;
  }

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

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

  .page-register__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-register__hero-container {
    padding: 60px 20px;
  }

  /* Mobile content image constraint */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

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

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