/* style/blog-hl8-registration-guide.css */

/* Variables */
:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-text-color-dark: #333333; /* For light backgrounds */
  --page-text-color-light: #ffffff; /* For dark backgrounds */
  --page-login-button-color: #EA7C07;
  --page-background-color: #121212; /* From body background info */
}

/* Base styles for the page content */
.page-blog-hl8-registration-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-color-light); /* Body background is dark #121212, so use light text */
  background-color: var(--page-background-color); /* Matches body background */
  padding-bottom: 60px; /* Add some padding at the bottom before footer */
}

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

/* Hero Section */
.page-blog-hl8-registration-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
}

.page-blog-hl8-registration-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-hl8-registration-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-hl8-registration-guide__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-hl8-registration-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size constraint */
  color: var(--page-secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-hl8-registration-guide__description {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-hl8-registration-guide__cta-button {
  display: inline-block;
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box; /* For button responsiveness */
}

.page-blog-hl8-registration-guide__cta-button:hover {
  background-color: #1e87c0; /* Darker shade of primary color */
}

.page-blog-hl8-registration-guide__cta-button--primary {
  background-color: var(--page-primary-color);
  border-color: var(--page-primary-color);
}

.page-blog-hl8-registration-guide__cta-button--secondary {
  background-color: transparent;
  border-color: var(--page-primary-color);
  color: var(--page-primary-color);
}

.page-blog-hl8-registration-guide__cta-button--secondary:hover {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
}

/* Content Sections */
.page-blog-hl8-registration-guide__content-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-hl8-registration-guide__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-hl8-registration-guide__section-title {
  font-size: 2.5rem;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-hl8-registration-guide__sub-title {
  font-size: 1.8rem;
  color: var(--page-secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-blog-hl8-registration-guide__text-block {
  margin-bottom: 30px;
  color: #e0e0e0; /* Slightly lighter than pure white for readability */
}

.page-blog-hl8-registration-guide__text-block p {
  margin-bottom: 15px;
}

.page-blog-hl8-registration-guide__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-blog-hl8-registration-guide__list li {
  margin-bottom: 10px;
}

.page-blog-hl8-registration-guide__list strong {
  color: var(--page-primary-color);
}

/* Registration Steps Section */
.page-blog-hl8-registration-guide__registration-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-blog-hl8-registration-guide__step-card {
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent background for cards */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--page-text-color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-hl8-registration-guide__step-image {
  width: 100%;
  max-width: 800px; /* Ensure images are large */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-blog-hl8-registration-guide__step-title {
  font-size: 1.5rem;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

/* FAQ Section */
.page-blog-hl8-registration-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-hl8-registration-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  color: var(--page-text-color-light);
}

.page-blog-hl8-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--page-secondary-color);
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none; /* For details/summary */
}

.page-blog-hl8-registration-guide__faq-item[open] .page-blog-hl8-registration-guide__faq-question {
  border-bottom: none;
}

.page-blog-hl8-registration-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hl8-registration-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-hl8-registration-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-primary-color);
}

.page-blog-hl8-registration-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #e0e0e0;
}

/* Conclusion Section */
.page-blog-hl8-registration-guide__conclusion {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hl8-registration-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-hl8-registration-guide__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-hl8-registration-guide {
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hl8-registration-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hl8-registration-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-hl8-registration-guide__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-hl8-registration-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-hl8-registration-guide__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-hl8-registration-guide__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hl8-registration-guide__content-section {
    padding: 40px 0;
  }

  .page-blog-hl8-registration-guide__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-hl8-registration-guide__sub-title {
    font-size: 1.5rem;
    margin-top: 25px;
  }

  /* Images and Videos Responsive */
  .page-blog-hl8-registration-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-hl8-registration-guide video { /* If video is added */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers for images/videos/buttons */
  .page-blog-hl8-registration-guide__hero-image-wrapper,
  .page-blog-hl8-registration-guide__step-card,
  .page-blog-hl8-registration-guide__container,
  .page-blog-hl8-registration-guide__content-section,
  .page-blog-hl8-registration-guide__video-section, /* If video is added */
  .page-blog-hl8-registration-guide__video-container, /* If video is added */
  .page-blog-hl8-registration-guide__video-wrapper, /* If video is added */
  .page-blog-hl8-registration-guide__cta-buttons, /* If multiple buttons */
  .page-blog-hl8-registration-guide__button-group, /* If multiple buttons */
  .page-blog-hl8-registration-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent overflow */
  }

  .page-blog-hl8-registration-guide__step-card {
    padding: 20px;
  }

  .page-blog-hl8-registration-guide__step-image {
    margin-bottom: 20px;
  }

  .page-blog-hl8-registration-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-blog-hl8-registration-guide__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}