.page-resources-how-to-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0d0d0d; /* Inherited from shared.css body */
}

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

.page-resources-how-to-register__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-resources-how-to-register__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast sections */
  color: #ffffff;
}

/* Hero Section */
.page-resources-how-to-register__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a decent height */
  background-color: #26A9E0; /* Use brand color for hero background */
  color: #FFFFFF;
}

.page-resources-how-to-register__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.page-resources-how-to-register__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-resources-how-to-register__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources-how-to-register__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-how-to-register__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Section Titles and Descriptions */
.page-resources-how-to-register__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-resources-how-to-register__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-resources-how-to-register__cta-button,
.page-resources-how-to-register__btn-primary,
.page-resources-how-to-register__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-register__btn-primary {
  background-color: #EA7C07; /* Login/Promotional color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-resources-how-to-register__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

.page-resources-how-to-register__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-register__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Advantages Section */
.page-resources-how-to-register__advantages-section {
  padding: 60px 0;
}

.page-resources-how-to-register__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-how-to-register__advantage-card {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-resources-how-to-register__advantage-card:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-register__card-icon {
  width: 100%; /* Ensure card images are large */
  max-width: 400px; /* Max width for larger card images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-register__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-how-to-register__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Steps Section */
.page-resources-how-to-register__steps-section {
  padding: 60px 0;
}

.page-resources-how-to-register__step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-resources-how-to-register__step-item:last-child {
  margin-bottom: 0;
}

.page-resources-how-to-register__step-item--reverse {
  flex-direction: row-reverse;
}

.page-resources-how-to-register__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #26A9E0;
  min-width: 60px;
  text-align: center;
}

.page-resources-how-to-register__step-content {
  flex: 2;
  min-width: 300px;
}

.page-resources-how-to-register__step-title {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-how-to-register__step-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-how-to-register__step-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-how-to-register__step-list li {
  margin-bottom: 10px;
}

.page-resources-how-to-register__step-list strong {
  color: #26A9E0;
}

.page-resources-how-to-register__step-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-how-to-register__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tips Section */
.page-resources-how-to-register__tips-section {
  padding: 60px 0;
}

.page-resources-how-to-register__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-register__tips-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-register__tips-list strong {
  color: #26A9E0;
}

/* After Register Section */
.page-resources-how-to-register__after-register-section {
  padding: 60px 0;
}

.page-resources-how-to-register__after-register-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-how-to-register__after-register-card {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-how-to-register__after-register-card .page-resources-how-to-register__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-how-to-register__after-register-card .page-resources-how-to-register__card-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* FAQ Section */
.page-resources-how-to-register__faq-section {
  padding: 60px 0;
}

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

.page-resources-how-to-register__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-resources-how-to-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

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

.page-resources-how-to-register__faq-item summary {
  list-style: none;
}

.page-resources-how-to-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-register__faq-item[open] .page-resources-how-to-register__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-register__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #f0f0f0;
}

/* Conclusion Section */
.page-resources-how-to-register__conclusion-section {
  padding: 60px 0 80px;
  text-align: center;
}

/* Global Image Sizing (as per requirements) */
.page-resources-how-to-register img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure images fill their space nicely */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-register__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-how-to-register__hero-content {
    text-align: center;
  }
  .page-resources-how-to-register__main-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-register__hero-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-resources-how-to-register__step-item,
  .page-resources-how-to-register__step-item--reverse {
    flex-direction: column;
  }
  .page-resources-how-to-register__step-image-wrapper {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-register {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-how-to-register__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Important for mobile fixed header */
  }
  .page-resources-how-to-register__main-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-register__hero-description,
  .page-resources-how-to-register__section-description,
  .page-resources-how-to-register__card-text,
  .page-resources-how-to-register__step-text,
  .page-resources-how-to-register__tips-list li,
  .page-resources-how-to-register__faq-answer p {
    font-size: 1em;
  }
  .page-resources-how-to-register__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-register__step-title,
  .page-resources-how-to-register__card-title {
    font-size: 1.3em;
  }
  .page-resources-how-to-register__cta-button,
  .page-resources-how-to-register__btn-primary,
  .page-resources-how-to-register__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    margin-bottom: 15px; /* Add spacing between stacked buttons */
  }
  .page-resources-how-to-register__hero-content .page-resources-how-to-register__cta-button {
    margin-left: auto;
    margin-right: auto;
  }
  /* Ensure all content containers are responsive */
  .page-resources-how-to-register__container,
  .page-resources-how-to-register__hero-container,
  .page-resources-how-to-register__advantages-grid,
  .page-resources-how-to-register__step-item,
  .page-resources-how-to-register__after-register-grid,
  .page-resources-how-to-register__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-how-to-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-how-to-register__step-number {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .page-resources-how-to-register__step-content,
  .page-resources-how-to-register__step-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-resources-how-to-register__tips-list li {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-register__main-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-register__section-title {
    font-size: 1.6em;
  }
  .page-resources-how-to-register__hero-description,
  .page-resources-how-to-register__section-description {
    font-size: 0.95em;
  }
  .page-resources-how-to-register__cta-button,
  .page-resources-how-to-register__btn-primary,
  .page-resources-how-to-register__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-resources-how-to-register__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-resources-how-to-register__faq-answer {
    padding: 15px;
  }
}