/* style/blog-n1883-registration-faq.css */

/* --- Base Styles --- */
.page-blog-n1883-registration-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff; /* Explicitly set for content area */
}

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

.page-blog-n1883-registration-faq__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-n1883-registration-faq h3 {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-n1883-registration-faq p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-blog-n1883-registration-faq strong {
  color: #26A9E0; /* Highlight important keywords */
}

/* --- Hero Section --- */
.page-blog-n1883-registration-faq__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, then more below */
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-blog-n1883-registration-faq__hero-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-n1883-registration-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
}

.page-blog-n1883-registration-faq__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  box-sizing: border-box;
  color: #333333; /* Dark text on light background */
}

.page-blog-n1883-registration-faq__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-n1883-registration-faq__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555555;
}

/* --- Buttons --- */
.page-blog-n1883-registration-faq__btn-primary {
  display: inline-block;
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button adapts to container */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text break */
}

.page-blog-n1883-registration-faq__btn-primary:hover {
  background-color: #1a7bb5;
}

.page-blog-n1883-registration-faq__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* --- Intro Section --- */
.page-blog-n1883-registration-faq__intro-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

/* --- Process Section --- */
.page-blog-n1883-registration-faq__process-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-blog-n1883-registration-faq__process-step {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: #333333; /* Dark text for light background */
}

.page-blog-n1883-registration-faq__process-step h3 {
  color: #26A9E0;
}

.page-blog-n1883-registration-faq__process-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px;
  min-height: 200px;
}

/* --- FAQ Section --- */
.page-blog-n1883-registration-faq__faq-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand primary color for dark section */
  color: #ffffff; /* White text for dark background */
}

.page-blog-n1883-registration-faq__faq-section .page-blog-n1883-registration-faq__section-title {
  color: #ffffff;
}

.page-blog-n1883-registration-faq__faq-list {
  margin-top: 40px;
}

.page-blog-n1883-registration-faq__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on blue */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-n1883-registration-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15); /* Slightly darker for clickable area */
  border-radius: 8px;
  user-select: none;
  list-style: none; /* For <summary> tag */
}

.page-blog-n1883-registration-faq__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for <summary> */
}

.page-blog-n1883-registration-faq__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-blog-n1883-registration-faq__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #ffffff;
}

.page-blog-n1883-registration-faq__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-blog-n1883-registration-faq__faq-item[open] .page-blog-n1883-registration-faq__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-blog-n1883-registration-faq__faq-item[open] .page-blog-n1883-registration-faq__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-blog-n1883-registration-faq__faq-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px;
  min-height: 200px;
}

/* --- Tips Section --- */
.page-blog-n1883-registration-faq__tips-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-blog-n1883-registration-faq__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-n1883-registration-faq__tip-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: #333333;
}

.page-blog-n1883-registration-faq__tip-item h3 {
  color: #26A9E0;
}

/* --- Benefits Section --- */
.page-blog-n1883-registration-faq__benefits-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand primary color for dark section */
  color: #ffffff; /* White text for dark background */
}

.page-blog-n1883-registration-faq__benefits-section .page-blog-n1883-registration-faq__section-title {
  color: #ffffff;
}

.page-blog-n1883-registration-faq__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-n1883-registration-faq__benefit-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #ffffff;
}

.page-blog-n1883-registration-faq__benefit-card h3 {
  color: #ffffff;
}

.page-blog-n1883-registration-faq__benefits-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px;
  min-height: 200px;
}

/* --- CTA Section --- */
.page-blog-n1883-registration-faq__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #ffffff;
}

.page-blog-n1883-registration-faq__cta-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #555555;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .page-blog-n1883-registration-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-n1883-registration-faq__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-n1883-registration-faq__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-n1883-registration-faq__main-title {
    font-size: 2em; /* Smaller H1 for mobile */
    margin-bottom: 15px;
  }

  .page-blog-n1883-registration-faq__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* Images responsive */
  .page-blog-n1883-registration-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Buttons responsive */
  .page-blog-n1883-registration-faq__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-n1883-registration-faq__cta-section .page-blog-n1883-registration-faq__btn-primary {
    margin: 0 auto; /* Center button if it's the only one */
  }

  /* Sections padding */
  .page-blog-n1883-registration-faq__hero-section,
  .page-blog-n1883-registration-faq__intro-section,
  .page-blog-n1883-registration-faq__process-section,
  .page-blog-n1883-registration-faq__faq-section,
  .page-blog-n1883-registration-faq__tips-section,
  .page-blog-n1883-registration-faq__benefits-section,
  .page-blog-n1883-registration-faq__cta-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-blog-n1883-registration-faq__hero-section {
    padding-top: 10px !important; /* Small top padding for hero on mobile */
  }

  /* Grid layouts become single column */
  .page-blog-n1883-registration-faq__process-grid,
  .page-blog-n1883-registration-faq__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-n1883-registration-faq__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-blog-n1883-registration-faq__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 1em;
  }
}

/* Ensure no filter is applied to images */
.page-blog-n1883-registration-faq img {
  filter: none;
}