.page-register {
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

.page-register__hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A1931 0%, #050E1A 100%);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

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

.page-register__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-register__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

.page-register__description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-register__register-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

.page-register__text-content {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section, .page-register__cta-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-register__value-section {
  background: #0A1931 url('[GALLERY:bg_pattern:1920x1080:abstract,geometric,subtle,dark,78be]') no-repeat center center/cover;
}

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

.page-register__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-register__feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-register__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-register__action-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #FFD700;
  color: #0A1931;
  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;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

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

.page-register__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-register__step-number {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

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

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__condition-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-register__learn-more-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: transparent;
  color: #FFD700;
  padding: 15px 30px;
  border: 2px solid #FFD700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-register__learn-more-button:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-register__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register__faq-question {
  background-color: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  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::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.25);
}

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

.page-register__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 25px;
}

.page-register__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-register__cta-section {
  text-align: center;
  background: linear-gradient(90deg, #0A1931, #000000);
  padding: 80px 20px;
}

.page-register__register-now-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 20px 50px;
  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 10px 25px rgba(255, 215, 0, 0.4);
  margin-top: 40px;
}

.page-register__register-now-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .page-register__main-title {
    font-size: 2.8em;
  }
  .page-register__register-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__feature-icon {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-register__main-title {
    font-size: 2.2em;
  }
  .page-register__description {
    font-size: 1em;
  }
  .page-register__register-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-register__container {
    padding: 30px 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__text-content {
    font-size: 0.95em;
  }
  .page-register__features-grid, .page-register__steps-list {
    grid-template-columns: 1fr;
  }
  .page-register__feature-icon {
    width: 250px; /* Ensure min 200px */
    height: 200px; /* Ensure min 200px */
  }
  .page-register__action-button, .page-register__learn-more-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px;
  }
  .page-register__faq-answer.active {
    padding: 10px 20px 20px;
  }
  .page-register__register-now-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-register__main-title {
    font-size: 1.8em;
  }
  .page-register__description {
    font-size: 0.9em;
  }
  .page-register__register-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-register__section-title {
    font-size: 1.6em;
  }
  .page-register__feature-icon {
    width: 250px; /* Ensure min 200px */
    height: 200px; /* Ensure min 200px */
  }
  .page-register__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-register__faq-answer {
    padding: 0 15px;
  }
  .page-register__faq-answer.active {
    padding: 8px 15px 15px;
  }
  .page-register__register-now-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}