.page-register {
  color: #ffffff; /* Light text for dark body 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__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
  background-color: #1a1a1a; /* Dark background to complement image */
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the background image */
}

.page-register__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-register__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-register__hero-button, .page-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text for contrast */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register__hero-button:hover, .page-register__cta-button:hover {
  background-color: #e0b800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-register__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-register__value-section {
  padding: 60px 20px;
  background-color: #222; /* Slightly lighter dark background */
}

.page-register__value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-register__value-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-register__value-text {
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-register__steps-section {
  padding: 60px 20px;
  background-color: #333;
}

.page-register__steps-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.page-register__step-number {
  background-color: #8B0000; /* Dark red for step numbers */
  color: #FFD700;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-register__step-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 5px;
}

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

.page-register__conditions-section {
  padding: 60px 20px;
  background-color: #222;
}

.page-register__conditions-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register__conditions-content p {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-register__conditions-list {
  list-style-type: disc;
  margin-left: 25px;
  color: #f0f0f0;
}

.page-register__conditions-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-register__text-link {
  color: #FFD700; /* Gold for text links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-register__faq-section {
  padding: 60px 20px;
  background-color: #333;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-register__faq-container {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  margin: 0 auto;
}

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

.page-register__faq-question {
  background-color: #8B0000; /* Dark red for FAQ questions */
  color: #FFD700;
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-icon {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-register__faq-question[aria-expanded="true"] .page-register__faq-icon {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-register__faq-answer p {
  padding-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-register__faq-question[aria-expanded="true"] + .page-register__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 20px;
}

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

.page-register__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #1a1a1a;
  border-top: 5px solid #FFD700;
}

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

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

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

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 500px;
    padding: 60px 15px;
  }
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__hero-button, .page-register__cta-button {
    font-size: 1.2em;
    padding: 12px 30px;
  }
  .page-register__section-title {
    font-size: 2em;
    margin-bottom: 40px;
    padding-top: 40px;
  }
  .page-register__value-grid, .page-register__steps-content, .page-register__faq-section {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .page-register__value-item, .page-register__conditions-content, .page-register__faq-container {
    padding: 25px;
  }
  .page-register__value-icon, .page-register__steps-image, .page-register__faq-image {
    width: 100%;
    max-width: none; /* Allow images to fill container on mobile */
    height: auto;
  }
  .page-register__value-icon, .page-register__steps-image, .page-register__faq-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__value-heading {
    font-size: 1.5em;
  }
  .page-register__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
  .page-register__step-heading {
    font-size: 1.4em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-register__faq-answer p {
    font-size: 1em;
  }
  .page-register__cta-title {
    font-size: 2.5em;
  }
  .page-register__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__hero-button, .page-register__cta-button {
    font-size: 1.1em;
    padding: 10px 25px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__value-item, .page-register__conditions-content, .page-register__faq-container {
    padding: 20px;
  }
  .page-register__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-register__step-heading {
    font-size: 1.3em;
  }
  .page-register__faq-question {
    font-size: 1em;
    padding: 12px;
  }
  .page-register__cta-title {
    font-size: 2em;
  }
}