.page-resources-sv3888-registration-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

.page-resources-sv3888-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-sv3888-registration-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  padding-bottom: 60px;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
}

.page-resources-sv3888-registration-guide__hero-content {
  flex: 1;
  padding-right: 40px;
  z-index: 1;
}

.page-resources-sv3888-registration-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-resources-sv3888-registration-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-sv3888-registration-guide__hero-buttons {
  display: flex;
  gap: 20px;
}

.page-resources-sv3888-registration-guide__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-resources-sv3888-registration-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-sv3888-registration-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-resources-sv3888-registration-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-sv3888-registration-guide__highlight {
  color: #EA7C07;
  font-weight: bold;
}

.page-resources-sv3888-registration-guide__content-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-sv3888-registration-guide__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-resources-sv3888-registration-guide__step-card,
.page-resources-sv3888-registration-guide__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-resources-sv3888-registration-guide__step-card:hover,
.page-resources-sv3888-registration-guide__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-sv3888-registration-guide__step-image,
.page-resources-sv3888-registration-guide__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-sv3888-registration-guide__step-title,
.page-resources-sv3888-registration-guide__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-sv3888-registration-guide__step-description,
.page-resources-sv3888-registration-guide__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-sv3888-registration-guide__login-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sv3888-registration-guide__login-step {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-sv3888-registration-guide__login-step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-sv3888-registration-guide__login-step-description {
  color: #f0f0f0;
}

.page-resources-sv3888-registration-guide__video-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  text-align: center;
  color: #ffffff;
}

.page-resources-sv3888-registration-guide__video-wrapper {
  display: block;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.page-resources-sv3888-registration-guide__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-sv3888-registration-guide__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-sv3888-registration-guide__checklist-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #f0f0f0;
}

.page-resources-sv3888-registration-guide__checklist-item::before {
  content: '✓';
  color: #26A9E0;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-resources-sv3888-registration-guide__faq-list {
  margin-top: 40px;
}

.page-resources-sv3888-registration-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-sv3888-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-sv3888-registration-guide__faq-question:hover {
  background-color: #1e87b7;
}

.page-resources-sv3888-registration-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-sv3888-registration-guide__faq-item.active .page-resources-sv3888-registration-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-sv3888-registration-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-sv3888-registration-guide__faq-item.active .page-resources-sv3888-registration-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px !important;
}

.page-resources-sv3888-registration-guide__faq-answer .page-resources-sv3888-registration-guide__paragraph {
  margin-bottom: 0;
}

.page-resources-sv3888-registration-guide__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-sv3888-registration-guide__cta-section .page-resources-sv3888-registration-guide__section-title {
  color: #ffffff;
  padding-top: 0;
}

.page-resources-sv3888-registration-guide__cta-section .page-resources-sv3888-registration-guide__paragraph {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #ffffff;
}

.page-resources-sv3888-registration-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-sv3888-registration-guide__cta-buttons--center {
    justify-content: center;
    margin-top: 30px;
}

.page-resources-sv3888-registration-guide__btn-primary,
.page-resources-sv3888-registration-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-sv3888-registration-guide__btn-primary {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-sv3888-registration-guide__btn-primary:hover {
  background-color: #d16e06;
  transform: translateY(-3px);
}

.page-resources-sv3888-registration-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-sv3888-registration-guide__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-sv3888-registration-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-sv3888-registration-guide__hero-description {
    font-size: 1.1em;
  }

  .page-resources-sv3888-registration-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-sv3888-registration-guide__hero-section {
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
  }

  .page-resources-sv3888-registration-guide__hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .page-resources-sv3888-registration-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-sv3888-registration-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-sv3888-registration-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-sv3888-registration-guide__btn-primary,
  .page-resources-sv3888-registration-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-resources-sv3888-registration-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-sv3888-registration-guide__paragraph {
    font-size: 0.95em;
  }

  .page-resources-sv3888-registration-guide__steps-grid,
  .page-resources-sv3888-registration-guide__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-sv3888-registration-guide__video-wrapper {
    margin: 30px 15px 0;
    max-width: calc(100% - 30px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-sv3888-registration-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-sv3888-registration-guide__checklist-item {
    padding: 12px 15px;
  }

  .page-resources-sv3888-registration-guide__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-resources-sv3888-registration-guide__faq-answer {
    padding: 0 15px;
  }

  .page-resources-sv3888-registration-guide__faq-item.active .page-resources-sv3888-registration-guide__faq-answer {
    padding: 15px !important;
  }

  /* Ensure all content sections and cards have proper padding */
  .page-resources-sv3888-registration-guide__content-section,
  .page-resources-sv3888-registration-guide__cta-section,
  .page-resources-sv3888-registration-guide__video-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  .page-resources-sv3888-registration-guide__container {
    padding: 0;
  }

  .page-resources-sv3888-registration-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-sv3888-registration-guide__step-card,
  .page-resources-sv3888-registration-guide__benefit-card {
    padding: 20px;
  }

  .page-resources-sv3888-registration-guide__hero-image-wrapper {
    order: -1; /* Move image above text on mobile */
    margin-bottom: 20px;
  }

  .page-resources-sv3888-registration-guide__login-step {
    padding: 20px;
  }
}