/* style/blog-how-to-register-login-hr99.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-how-to-register-login-hr99 {
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-register-login-hr99__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-register-login-hr99__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-how-to-register-login-hr99__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-blog-how-to-register-login-hr99__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-how-to-register-login-hr99__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-blog-how-to-register-login-hr99__main-title {
  color: #26A9E0;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-blog-how-to-register-login-hr99__description {
  color: #ffffff;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-how-to-register-login-hr99__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-register-login-hr99__btn-primary,
.page-blog-how-to-register-login-hr99__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-register-login-hr99__btn-primary.page-blog-how-to-register-login-hr99__btn-register {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-register-login-hr99__btn-primary.page-blog-how-to-register-login-hr99__btn-register:hover {
  background-color: #1a7bb7;
}

.page-blog-how-to-register-login-hr99__btn-secondary.page-blog-how-to-register-login-hr99__btn-login {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-how-to-register-login-hr99__btn-secondary.page-blog-how-to-register-login-hr99__btn-login:hover {
  background-color: #c96706;
}

/* Content Sections */
.page-blog-how-to-register-login-hr99__content-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly translucent white on dark body */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-how-to-register-login-hr99__section-title {
  color: #26A9E0;
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-blog-how-to-register-login-hr99__text-block {
  color: #f0f0f0;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-blog-how-to-register-login-hr99__image-wrapper {
  text-align: center;
  margin: 30px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-register-login-hr99__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* FAQ Section */
.page-blog-how-to-register-login-hr99__faq-section {
  padding: 60px 0;
  background-color: #000000; /* Use pure black for strong contrast on dark theme */
  color: #ffffff;
  border-radius: 8px;
}

.page-blog-how-to-register-login-hr99__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-register-login-hr99__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-how-to-register-login-hr99__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-login-hr99__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-register-login-hr99__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-blog-how-to-register-login-hr99__faq-qtext {
  color: #ffffff;
}

.page-blog-how-to-register-login-hr99__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-blog-how-to-register-login-hr99__faq-item[open] .page-blog-how-to-register-login-hr99__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-register-login-hr99__faq-answer {
  padding: 0 25px 20px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  font-size: 0.95em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-register-login-hr99__main-title {
    font-size: 2.5em;
  }

  .page-blog-how-to-register-login-hr99__section-title {
    font-size: 1.8em;
  }
}

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

  .page-blog-how-to-register-login-hr99__hero-section {
    min-height: 450px;
    padding: 10px 0 40px;
  }

  .page-blog-how-to-register-login-hr99__hero-content {
    padding: 15px;
  }

  .page-blog-how-to-register-login-hr99__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-blog-how-to-register-login-hr99__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-register-login-hr99__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-how-to-register-login-hr99__btn-primary,
  .page-blog-how-to-register-login-hr99__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-register-login-hr99__content-section,
  .page-blog-how-to-register-login-hr99__faq-section {
    padding: 40px 0;
  }

  .page-blog-how-to-register-login-hr99__container {
    padding: 0 15px;
  }

  .page-blog-how-to-register-login-hr99__section-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-register-login-hr99__text-block {
    font-size: 0.95em;
  }

  /* Force responsive images */
  .page-blog-how-to-register-login-hr99 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-register-login-hr99__image-wrapper,
  .page-blog-how-to-register-login-hr99__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-register-login-hr99__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-register-login-hr99__faq-answer {
    padding: 0 20px 15px;
  }

  .page-blog-how-to-register-login-hr99__hero-image {
    filter: brightness(0.3); /* Even darker for mobile */
  }
}