.page-register {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-register__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  box-sizing: border-box;
}

.page-register__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-register__hero-section .page-register__container {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.page-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Custom color for register/login font */
}

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

.page-register__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFF00; /* Custom color for register/login font */
  font-weight: bold;
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-register__benefits-section,
.page-register__verification-section,
.page-register__why-choose-us {
  padding: 80px 0;
  background-color: #1a1a2e; /* Body background */
  color: #ffffff;
}

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

.page-register__benefit-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.page-register__benefit-title {
  font-size: 1.8em;
  color: #017439; /* Primary color for titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__benefit-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-register__steps-section,
.page-register__bonuses-section,
.page-register__faq-section,
.page-register__cta-final {
  padding: 80px 0;
  background-color: #017439; /* Primary brand color for dark sections */
  color: #ffffff;
}

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

.page-register__step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-register__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFFF00; /* Custom color for register/login font */
  margin-bottom: 15px;
}

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

.page-register__step-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-register__step-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page-register__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-register__verification-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-register__verification-text {
  flex: 1;
  min-width: 300px;
}

.page-register__verification-subtitle {
  font-size: 1.6em;
  color: #017439; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__verification-text ul,
.page-register__verification-text ol {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #e0e0e0;
}

.page-register__verification-text ul li,
.page-register__verification-text ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-register__verification-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-register__verification-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-register__bonus-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-register__bonus-title {
  font-size: 1.8em;
  color: #FFFF00; /* Custom color for register/login font */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register__bonus-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-register__bonuses-disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #cccccc;
}

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

.page-register__why-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #ffffff;
  border-left: 5px solid #017439;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-register__why-list li strong {
  color: #FFFF00; /* Custom color for register/login font */
}

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

.page-register__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background: #017439; /* Primary color for FAQ question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-register__faq-item[open] .page-register__faq-question {
  border-bottom: 1px solid transparent;
}

.page-register__faq-qtext {
  flex-grow: 1;
  color: #FFFF00; /* Custom color for register/login font */
}

.page-register__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  width: 20px;
  text-align: center;
}

.page-register__faq-item details > summary {
  list-style: none;
}

.page-register__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-register__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.05);
}

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

.page-register__cta-final {
  text-align: center;
  padding-bottom: 100px;
}

.page-register__cta-final .page-register__btn-primary,
.page-register__cta-final .page-register__btn-secondary {
  margin: 15px 10px;
}

.page-register__btn-primary {
  display: inline-block;
  background: #C30808; /* Custom color for Register button */
  color: #FFFF00; /* Custom color for Register button font */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #C30808;
  box-sizing: border-box;
}

.page-register__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-register__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #017439; /* Primary color for secondary button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  border: 2px solid #017439;
  box-sizing: border-box;
}

.page-register__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
  transform: translateY(-2px);
}

/* General image responsive styles */
.page-register img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* No CSS filter on images */
.page-register img {
  filter: none; /* Ensure no filter is applied */
}

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

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

  .page-register__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-register__hero-title {
    font-size: 2.2em;
  }

  .page-register__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-register__section-title {
    font-size: 1.8em;
  }

  .page-register__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-register__benefits-section,
  .page-register__steps-section,
  .page-register__verification-section,
  .page-register__bonuses-section,
  .page-register__why-choose-us,
  .page-register__faq-section,
  .page-register__cta-final {
    padding: 50px 0;
  }

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

  /* Mobile image and video responsive styles */
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-register__step-image {
    height: auto !important; /* Allow height to adjust for mobile */
  }

  .page-register video,
  .page-register__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-register__video-section,
  .page-register__video-container,
  .page-register__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Mobile button responsive styles */
  .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;
    margin: 10px 0 !important; /* Stack buttons vertically */
  }

  .page-register__cta-final .page-register__btn-primary,
  .page-register__cta-final .page-register__btn-secondary {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .page-register__benefits-grid,
  .page-register__steps-grid,
  .page-register__bonuses-grid,
  .page-register__verification-content {
    grid-template-columns: 1fr;
  }

  .page-register__verification-text,
  .page-register__verification-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-register__why-list li {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-register__faq-answer {
    padding: 15px 20px;
  }
}