.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: #FFFFFF; /* Explicitly set for clarity, though body is white */
}

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

.page-register__section {
  padding: 60px 0;
  text-align: center;
}

.page-register__section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-register__section-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast if needed */
}

.page-register__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  color: #FFFFFF;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly for design, but text is below image */
  background: rgba(38, 169, 224, 0.85); /* Use brand color with opacity */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.1;
}

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

/* Buttons */
.page-register__btn-primary {
  display: inline-block;
  background-color: #26A9E0; /* Main brand color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-register__btn-center {
  margin-top: 30px;
}

/* Background Colors */
.page-register__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-register__dark-bg .page-register__section-title,
.page-register__dark-bg .page-register__hero-title,
.page-register__dark-bg .page-register__hero-description,
.page-register__dark-bg .page-register__notes-list li p,
.page-register__dark-bg .page-register__notes-list li h3 {
  color: #FFFFFF;
}

.page-register__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-register__light-bg .page-register__section-title {
  color: #26A9E0;
}

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

.page-register__feature-item,
.page-register__step-item,
.page-register__troubleshooting-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page-register__feature-title,
.page-register__step-title,
.page-register__troubleshooting-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-register__step-number {
  background-color: #EA7C07; /* Login color for step number */
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Image container for content */
.page-register__image-container {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-register__content-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Notes List */
.page-register__notes-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-register__note-item {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register__note-title {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-register__note-item p {
  color: #f0f0f0;
}

.page-register__note-item a {
  color: #f0f0f0;
  text-decoration: underline;
}

.page-register__note-item a:hover {
  color: #FFFFFF;
}

/* Troubleshooting */
.page-register__troubleshooting-contact-text {
  font-size: 18px;
  margin-top: 30px;
  color: #555555;
}

.page-register__troubleshooting-contact-text a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-register__troubleshooting-contact-text a:hover {
  text-decoration: underline;
}

/* FAQ */
.page-register__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-register__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-item summary:hover {
  background-color: #eef7fc;
}

.page-register__faq-qtext {
  color: #26A9E0;
}

.page-register__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: #26A9E0;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  content: '−';
}

.page-register__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}

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

/* Conclusion */
.page-register__conclusion .page-register__btn-primary {
  margin-top: 40px;
  background-color: #EA7C07; /* Login color for final CTA */
}

.page-register__conclusion .page-register__btn-primary:hover {
  background-color: #d16b06;
}

/* Global image reset for content area */
.page-register img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Ensure no CSS filter changes original image color */
}

/* Content area images minimum size enforcement */
.page-register__image-container img,
.page-register__hero-image {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-register__notes-list {
    grid-template-columns: 1fr;
  }
}

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

  .page-register__section {
    padding: 40px 0;
  }

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

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

  .page-register__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
    border-radius: 10px;
  }

  .page-register__hero-title {
    font-size: 32px;
  }

  .page-register__hero-description {
    font-size: 16px;
  }

  /* All images */
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All buttons */
  .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: 12px 15px;
    font-size: 16px;
  }

  /* Button containers */
  .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__features-grid,
  .page-register__steps-grid,
  .page-register__troubleshooting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-register__feature-item,
  .page-register__step-item,
  .page-register__troubleshooting-item,
  .page-register__note-item,
  .page-register__faq-item {
    padding: 20px;
  }

  .page-register__feature-title,
  .page-register__step-title,
  .page-register__troubleshooting-title,
  .page-register__note-title,
  .page-register__faq-item summary {
    font-size: 18px;
  }

  .page-register__faq-answer {
    font-size: 15px;
  }

  .page-register__step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .page-register__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-register__video-section {
    padding-top: 10px !important;
  }
}