.page-register {
  color: #333333; /* Default text color for light backgrounds */
  background-color: #B71C1C; /* Main background color */
}

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: #FFF5E1;
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

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

.page-register__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Overlay for readability */
  border-radius: 10px;
}

.page-register__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1;
}

.page-register__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
  color: #FFF5E1; /* Text Main */
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  border: 2px solid #F2B544; /* Border color */
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-register__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.page-register__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-register__dark-section {
  background-color: #C91F17;
  color: #FFF5E1;
}

.page-register__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-register__benefit-item {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.1em;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #F2B544; /* Border */
}

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

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(242, 181, 68, 0.5);
}

.page-register__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: #F4D34D; /* Gold */
  color: #7A0E0E; /* Deep Red */
  font-weight: 700;
  font-size: 1.2em;
}

.page-register__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFF5E1;
}

.page-register__step-description {
  font-size: 1em;
  line-height: 1.5;
  color: #FFF5E1;
}

.page-register__image-text-group {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-register__image-text-group--reverse {
  flex-direction: row-reverse;
}

.page-register__image-text-group .page-register__image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-register__image-text-group .page-register__list {
  flex: 1;
  list-style: none;
  padding: 0;
  min-width: 300px;
}

.page-register__list-item {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-register__list-item::before {
  content: '✔';
  color: #E6B800; /* Gold-like color for checkmark */
  position: absolute;
  left: 0;
  font-weight: 700;
}

.page-register__image--center {
  display: block;
  margin: 40px auto;
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register__faq-list {
  margin-top: 40px;
}

.page-register__faq-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #F2B544; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  background-color: #C91F17; /* Main color */
  border-bottom: 1px solid transparent;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-register__faq-item[open] > .page-register__faq-question {
  border-bottom-color: #F2B544;
}

.page-register__faq-question::-webkit-details-marker {
  display: none;
}

.page-register__faq-qtext {
  flex-grow: 1;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-register__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-register {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-register__hero-section {
    padding-bottom: 40px;
  }

  .page-register__hero-content {
    padding: 15px;
  }

  .page-register__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-register__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-register__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-register__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-register__section-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

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

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

  .page-register__image-text-group {
    flex-direction: column;
    gap: 20px;
  }

  .page-register__image-text-group--reverse {
    flex-direction: column;
  }

  .page-register__image-text-group .page-register__image {
    min-width: unset;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-register__image--center {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-register__list {
    min-width: unset;
  }

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

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