.page-register {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensuring consistency with body background */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A1A2E; /* Dark blue background for hero */
  border-bottom: 2px solid #FFD700;
}

.page-register__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-register__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A2E; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

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

.page-register__cta-button--secondary {
  background-color: #1A1A2E;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-register__cta-button--download {
  margin-left: 20px;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-bottom-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-register__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

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

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

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

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

.page-register__value-icon {
  width: 200px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-register__value-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-register__value-text {
  color: #f0f0f0;
  font-size: 1em;
}

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

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 20px;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}

.page-register__step-content {
  text-align: left;
}

.page-register__step-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

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

.page-register__condition-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 1.05em;
}

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

.page-register__text-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.page-register__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #1A1A2E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.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;
  font-size: 1.05em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-register__cta-bottom-section {
  text-align: center;
  margin-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__value-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-register__hero-section {
    padding: 40px 15px;
  }
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 15px;
  }
  .page-register__cta-button--download {
    margin-left: 10px;
  }
  .page-register__value-section,
  .page-register__steps-section,
  .page-register__conditions-section,
  .page-register__faq-section,
  .page-register__cta-bottom-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-description {
    font-size: 0.95em;
  }
  .page-register__value-item {
    padding: 25px;
  }
  .page-register__value-icon {
    width: 200px; /* Minimum 200px */
    height: auto;
  }
  .page-register__value-heading {
    font-size: 1.3em;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-register__step-heading {
    font-size: 1.5em;
  }
  .page-register__step-text {
    font-size: 1em;
  }
  .page-register__condition-item {
    font-size: 0.95em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-register__faq-answer {
    padding: 15px;
    font-size: 0.95em;
  }
  .page-register__text-link {
    margin-top: 10px;
    margin-right: 15px;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__value-icon {
    max-width: 100%; /* Ensures images scale down */
    height: auto;
  }
  .page-register__faq-item img {
    max-width: 100%;
    height: auto;
  }
  .page-register__conditions-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-register__cta-button--download {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px; /* Add margin for stacking */
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__step-heading {
    font-size: 1.3em;
  }
  .page-register__faq-question {
    font-size: 1em;
  }
}