.page-register {
  color: #333333; /* Dark text for light background */
  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__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-register__hero-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

.page-register__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.page-register__button--register {
  background-color: #000000;
  color: #FFFFFF; /* As per custom color spec */
  border: 2px solid #000000;
}

.page-register__button--register:hover {
  background-color: #333333;
}

.page-register__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-register__button--download:hover {
  background-color: #e0a53b;
}

.page-register__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

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

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

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section {
  background-color: #FFFFFF;
  padding: 40px 0;
}

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

.page-register__value-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__value-image {
  width: 100%;
  max-width: 400px; /* Ensures image is not too wide for the card */
  height: auto;
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-register__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 30px;
}

.page-register__steps-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-register__steps-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  font-size: 2em;
  font-weight: bold;
  color: #FCBC45;
  flex-shrink: 0;
  background-color: #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-register__steps-heading {
  font-size: 1.5em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register__steps-text {
  font-size: 1.1em;
  color: #555555;
}

.page-register__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-register__conditions-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-register__conditions-icon {
  width: 100%;
  max-width: 200px; /* Max width for these specific icons */
  height: auto;
  min-height: 200px; /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 15px;
}

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

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

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

.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: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.page-register__faq-item[open] .page-register__faq-question {
  border-bottom: none;
}

.page-register__faq-item:last-child .page-register__faq-question {
  border-bottom: none;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FCBC45;
  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;
  font-size: 1.1em;
  color: #555555;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 40px 15px;
  }
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__hero-actions {
    flex-direction: column;
  }
  .page-register__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-register__value-grid,
  .page-register__conditions-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-register__steps-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__steps-item::before {
    margin-bottom: 15px;
  }
  .page-register__steps-heading {
    font-size: 1.3em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }

  /* Mobile image scaling for content area images */
  .page-register img {
    max-width: 100%;
    height: auto;
    /* Ensure no content area images are shrunk below 200px by specific rules */
  }
  .page-register__value-image,
  .page-register__conditions-icon {
    min-width: 200px;
    min-height: 200px;
  }
}

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