.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
}

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

.page-register__section-title {
  font-size: 36px;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-register__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #cccccc;
}

.page-register__btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
  color: #1E90FF; /* Dark blue text on gold button for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register__btn-primary:hover {
  background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-register__btn-secondary {
  display: inline-block;
  background: #1E90FF; /* Dark blue background */
  color: #FFD700; /* Gold text */
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
  cursor: pointer;
}

.page-register__btn-secondary:hover {
  background: #FFD700; /* Gold background */
  color: #1E90FF; /* Dark blue text */
  border-color: #1E90FF;
}

.page-register img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HERO Section */
.page-register__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  margin-top: 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-register__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text readability */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-register__btn-large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Benefits Section */
.page-register__benefits-section {
  padding: 80px 0;
  background-color: var(--background-dark); /* Dark background */
  color: #f0f0f0;
}

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

.page-register__benefit-card {
  background: #1E90FF; /* Dark blue card background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* White text on dark blue */
}

.page-register__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-register__benefit-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register__benefit-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700; /* Gold title */
}

.page-register__benefit-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Steps Section */
.page-register__steps-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #f0f0f0;
}

.page-register__steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-register__steps-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.page-register__step-number {
  background: #FFD700; /* Gold number background */
  color: #1E90FF; /* Dark blue number text */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-register__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: #FFD700; /* Gold title */
}

.page-register__step-description {
  font-size: 16px;
  color: #cccccc;
}

/* Security Section */
.page-register__security-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: #f0f0f0;
}

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

.page-register__feature-item {
  background: #1E90FF; /* Dark blue card background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-register__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

/* Promotions Section */
.page-register__promotions-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

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

.page-register__promo-card {
  background: #1E90FF; /* Dark blue card background */
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-register__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-register__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register__promo-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-register__promo-description {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: #f0f0f0;
}

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

.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a; /* Slightly lighter dark background for FAQ item */
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1E90FF; /* Dark blue for question background */
  border: 1px solid #1E90FF;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

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

.page-register__faq-question:active {
  background: #0f70df;
}

.page-register__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700; /* Gold for FAQ question text */
}

.page-register__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-register__faq-item.active .page-register__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X shape when active */
}

.page-register__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1a1a1a;
  border-radius: 0 0 8px 8px;
}

.page-register__faq-item.active .page-register__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-register__cta-final-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register__cta-final-section .page-register__container {
  position: relative;
  z-index: 2;
}

.page-register__cta-final-section img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 1;
}

/* ---------------------------------------------------------------------------------------------------- */
/* Mobile Responsiveness */
/* ---------------------------------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 44px;
  }
  .page-register__hero-description {
    font-size: 18px;
  }
  .page-register__steps-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-register__steps-image {
    order: 2;
  }
  .page-register__steps-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-register {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-register__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-register__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-register__section-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* HERO Section Mobile */
  .page-register__hero-section {
    min-height: 400px;
    padding-top: 0 !important; /* Assuming shared.css handles body padding-top */
  }
  .page-register__hero-content {
    padding: 25px;
  }
  .page-register__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-register__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  /* Buttons general mobile adaptation */
  .page-register__btn-primary,
  .page-register__btn-secondary,
  .page-register a[class*="button"],
  .page-register a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-register__btn-large {
    padding: 15px 30px !important;
  }

  .page-register__cta-buttons,
  .page-register__button-group,
  .page-register__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-register__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Benefits Section Mobile */
  .page-register__benefits-section {
    padding: 50px 0;
  }
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-register__benefit-card {
    padding: 25px;
  }
  .page-register__benefit-card img {
    
  }
  .page-register__benefit-title {
    font-size: 20px;
  }

  /* Steps Section Mobile */
  .page-register__steps-section {
    padding: 50px 0;
  }
  .page-register__steps-layout {
    gap: 30px;
  }
  .page-register__step-item {
    margin-bottom: 20px;
  }
  .page-register__step-number {
    width: 38px;
    height: 38px;
    font-size: 20px;
    margin-right: 15px;
  }
  .page-register__step-title {
    font-size: 18px;
  }
  .page-register__step-description {
    font-size: 15px;
  }

  /* Security Section Mobile */
  .page-register__security-section {
    padding: 50px 0;
  }
  .page-register__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-register__feature-item {
    padding: 25px;
  }
  .page-register__feature-title {
    font-size: 20px;
  }

  /* Promotions Section Mobile */
  .page-register__promotions-section {
    padding: 50px 0;
  }
  .page-register__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-register__promo-card {
    padding: 20px;
  }
  .page-register__promo-card img {
    
  }
  .page-register__promo-title {
    font-size: 18px;
  }

  /* FAQ Section Mobile */
  .page-register__faq-section {
    padding: 50px 0;
  }
  .page-register__faq-question {
    padding: 15px 20px;
  }
  .page-register__faq-question h3 {
    font-size: 16px;
  }
  .page-register__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-register__faq-answer {
    padding: 0 20px;
  }
  .page-register__faq-item.active .page-register__faq-answer {
    padding: 15px 20px !important;
  }

  /* Final CTA Section Mobile */
  .page-register__cta-final-section {
    padding: 50px 0;
  }
  .page-register__btn-large {
    font-size: 18px;
  }
  
  /* General image responsiveness, excluding specific fixed-size elements */
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}