.page-register {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text on light default body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Dark blue background for hero content area */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-register__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-register__intro-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #E3B23C; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register__cta-button:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
  transform: translateY(-3px);
}

.page-register__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__rules-section,
.page-register__faq-section,
.page-register__cta-section {
  padding: 60px 0;
}

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

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

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

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

.page-register__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-register__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-register__feature-text {
  color: #666666;
  font-size: 1em;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-register__step-item {
  position: relative;
  padding-left: 70px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  padding: 30px;
}

.page-register__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E3B23C;
  color: #0A2463;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 0 0 5px rgba(227, 178, 60, 0.3);
}

.page-register__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-register__step-text {
  color: #666666;
  margin-bottom: 15px;
}

.page-register__step-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  max-height: 600px;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-register__step-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-register__step-button:hover {
  background-color: #1c4dc3;
}

.page-register__rules-section {
  background-color: #f0f4f8;
}

.page-register__rules-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-register__rule-item {
  background-color: #ffffff;
  border-left: 5px solid #E3B23C;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1.1em;
  color: #333333;
}

.page-register__rule-item strong {
  color: #0A2463;
}

.page-register__button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 250px;
  text-align: center;
}

.page-register__button:hover {
  background-color: #1c4dc3;
}

.page-register__button--secondary {
  background-color: #6c7ca1;
}

.page-register__button--secondary:hover {
  background-color: #546692;
}

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

.page-register__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: #f5f5f5;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A2463;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-register__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-register__faq-question.active {
  background-color: #E3B23C;
  color: #0A2463;
}

.page-register__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

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

.page-register__cta-section {
  background: linear-gradient(135deg, #0A2463, #1c4dc3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-register__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

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

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

.page-register__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
  border-radius: 50px;
  background-color: #E3B23C;
  color: #0A2463;
}

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

.page-register__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  max-height: 600px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__main-heading {
    font-size: 2.8em;
  }
  .page-register__intro-text {
    font-size: 1.2em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-register__main-heading {
    font-size: 2.2em;
  }
  .page-register__intro-text {
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-register__steps-list {
    gap: 30px;
  }
  .page-register__step-item {
    padding-left: 60px;
  }
  .page-register__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 10px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__cta-title {
    font-size: 1.8em;
  }
  .page-register__cta-description {
    font-size: 1.1em;
  }
  .page-register__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-register__hero-section,
  .page-register__value-section,
  .page-register__steps-section,
  .page-register__rules-section,
  .page-register__faq-section,
  .page-register__cta-section {
    padding: 40px 0;
  }

  /* Mobile content area image overflow prevention */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-register__main-heading {
    font-size: 1.8em;
  }
  .page-register__cta-title {
    font-size: 1.5em;
  }
  .page-register__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-register__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}