/* style/blog-kc6-registration-process-guide.css */

/* Variables */
:root {
  --kc6-primary-color: #26A9E0;
  --kc6-secondary-color: #FFFFFF;
  --kc6-login-color: #EA7C07;
  --kc6-background-color: #FFFFFF;
  --kc6-text-dark: #333333;
  --kc6-text-light: #ffffff;
}

/* Base styles for the page content */
.page-blog-kc6-registration-process-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--kc6-text-dark); /* Body background is light, so use dark text */
  background-color: var(--kc6-background-color);
}

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

/* Hero Section */
.page-blog-kc6-registration-process-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles header offset, small top padding for visual */
  background-color: var(--kc6-primary-color);
  color: var(--kc6-text-light);
  overflow: hidden;
}

.page-blog-kc6-registration-process-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-kc6-registration-process-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-blog-kc6-registration-process-guide__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image slightly for better visual flow */
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-blog-kc6-registration-process-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--kc6-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-kc6-registration-process-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--kc6-secondary-color);
}

.page-blog-kc6-registration-process-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

.page-blog-kc6-registration-process-guide__btn-primary,
.page-blog-kc6-registration-process-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-kc6-registration-process-guide__btn-primary {
  background-color: var(--kc6-login-color); /* Using login color for primary CTA */
  color: var(--kc6-text-light);
  border: 2px solid var(--kc6-login-color);
}

.page-blog-kc6-registration-process-guide__btn-primary:hover {
  background-color: darken(var(--kc6-login-color), 10%);
  border-color: darken(var(--kc6-login-color), 10%);
}

.page-blog-kc6-registration-process-guide__btn-secondary {
  background-color: transparent;
  color: var(--kc6-secondary-color);
  border: 2px solid var(--kc6-secondary-color);
}

.page-blog-kc6-registration-process-guide__btn-secondary:hover {
  background-color: var(--kc6-secondary-color);
  color: var(--kc6-primary-color);
}

/* General Section Styling */
.page-blog-kc6-registration-process-guide__section {
  padding: 60px 0;
}

.page-blog-kc6-registration-process-guide__section-title {
  font-size: 2.5em;
  color: var(--kc6-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-kc6-registration-process-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--kc6-text-dark);
}

/* Why Choose Section */
.page-blog-kc6-registration-process-guide__why-choose {
  background-color: #f8f9fa;
}

.page-blog-kc6-registration-process-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-kc6-registration-process-guide__feature-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: var(--kc6-secondary-color);
  color: var(--kc6-text-dark);
}

.page-blog-kc6-registration-process-guide__feature-title {
  font-size: 1.5em;
  color: var(--kc6-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-kc6-registration-process-guide__feature-text {
  font-size: 1em;
  line-height: 1.7;
}

/* Registration Steps Section */
.page-blog-kc6-registration-process-guide__registration-steps {
  background-color: var(--kc6-background-color);
}

.page-blog-kc6-registration-process-guide__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-blog-kc6-registration-process-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: var(--kc6-secondary-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-kc6-registration-process-guide__step-number {
  width: 50px;
  height: 50px;
  background-color: var(--kc6-primary-color);
  color: var(--kc6-text-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-blog-kc6-registration-process-guide__step-title {
  font-size: 1.8em;
  color: var(--kc6-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-kc6-registration-process-guide__step-text {
  font-size: 1.05em;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-blog-kc6-registration-process-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

.page-blog-kc6-registration-process-guide__list {
  text-align: left;
  margin-bottom: 20px;
  padding-left: 25px;
  color: var(--kc6-text-dark);
}

.page-blog-kc6-registration-process-guide__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-kc6-registration-process-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Important Notes Section */
.page-blog-kc6-registration-process-guide__important-notes {
  background-color: #f0f2f5;
}

/* After Registration Section */
.page-blog-kc6-registration-process-guide__after-registration {
  background-color: var(--kc6-background-color);
}

.page-blog-kc6-registration-process-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-kc6-registration-process-guide__card {
  background-color: var(--kc6-secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: var(--kc6-text-dark);
}

.page-blog-kc6-registration-process-guide__card-title {
  font-size: 1.6em;
  color: var(--kc6-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-kc6-registration-process-guide__card-text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 25px;
}

.page-blog-kc6-registration-process-guide__card-btn {
  width: auto;
  padding: 12px 25px;
  font-size: 0.95em;
}

/* FAQ Section */
.page-blog-kc6-registration-process-guide__faq-section {
  background-color: #f8f9fa;
}

.page-blog-kc6-registration-process-guide__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-kc6-registration-process-guide__faq-item {
  background-color: var(--kc6-secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--kc6-text-dark);
}

.page-blog-kc6-registration-process-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--kc6-primary-color);
  cursor: pointer;
  background-color: #fdfdfd;
  transition: background-color 0.3s ease;
}

.page-blog-kc6-registration-process-guide__faq-question:hover {
  background-color: #eaf7ff;
}

.page-blog-kc6-registration-process-guide__faq-item[open] > .page-blog-kc6-registration-process-guide__faq-question {
  background-color: #eaf7ff;
}

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

.page-blog-kc6-registration-process-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-kc6-registration-process-guide__faq-item[open] .page-blog-kc6-registration-process-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-kc6-registration-process-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: var(--kc6-text-dark);
}

/* Conclusion CTA Section */
.page-blog-kc6-registration-process-guide__conclusion-cta {
  background-color: var(--kc6-primary-color); /* Dark background for this section */
  color: var(--kc6-text-light); /* Light text for contrast */
  text-align: center;
}

.page-blog-kc6-registration-process-guide__conclusion-cta .page-blog-kc6-registration-process-guide__section-title,
.page-blog-kc6-registration-process-guide__conclusion-cta .page-blog-kc6-registration-process-guide__section-description {
  color: var(--kc6-text-light);
}

.page-blog-kc6-registration-process-guide__conclusion-cta .page-blog-kc6-registration-process-guide__btn-primary {
  background-color: var(--kc6-login-color);
  border-color: var(--kc6-login-color);
  color: var(--kc6-text-light);
}

.page-blog-kc6-registration-process-guide__conclusion-cta .page-blog-kc6-registration-process-guide__btn-primary:hover {
  background-color: darken(var(--kc6-login-color), 10%);
  border-color: darken(var(--kc6-login-color), 10%);
}

.page-blog-kc6-registration-process-guide__conclusion-cta .page-blog-kc6-registration-process-guide__btn-secondary {
  background-color: var(--kc6-secondary-color);
  border-color: var(--kc6-secondary-color);
  color: var(--kc6-primary-color);
}

.page-blog-kc6-registration-process-guide__conclusion-cta .page-blog-kc6-registration-process-guide__btn-secondary:hover {
  background-color: darken(var(--kc6-secondary-color), 5%);
  color: var(--kc6-primary-color);
}

/* Image sizing for all content images */
.page-blog-kc6-registration-process-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  /* No filter properties to change image color */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-kc6-registration-process-guide__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }

  .page-blog-kc6-registration-process-guide__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-kc6-registration-process-guide__section-title {
    font-size: 2em;
  }

  .page-blog-kc6-registration-process-guide__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-kc6-registration-process-guide__card-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-blog-kc6-registration-process-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-kc6-registration-process-guide__hero-content {
    margin-top: -80px;
    padding: 20px 15px;
  }

  .page-blog-kc6-registration-process-guide__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }

  .page-blog-kc6-registration-process-guide__hero-description {
    font-size: 1em;
  }

  .page-blog-kc6-registration-process-guide__section {
    padding: 40px 0;
  }

  .page-blog-kc6-registration-process-guide__section-title {
    font-size: 1.8em;
  }

  .page-blog-kc6-registration-process-guide__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-blog-kc6-registration-process-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 15px;
  }

  .page-blog-kc6-registration-process-guide__btn-primary,
  .page-blog-kc6-registration-process-guide__btn-secondary {
    width: 100% !important; /* Force full width on mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px;
    font-size: 1em;
  }

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

  .page-blog-kc6-registration-process-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-kc6-registration-process-guide__section,
  .page-blog-kc6-registration-process-guide__card,
  .page-blog-kc6-registration-process-guide__container,
  .page-blog-kc6-registration-process-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-kc6-registration-process-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset, small top padding */
  }

  .page-blog-kc6-registration-process-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-kc6-registration-process-guide__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

/* Utility for darken color in CSS (Sass-like function) */
/* This is a placeholder for actual SASS/LESS processing or manual calculation */
/* For pure CSS, these would need to be pre-calculated values or using filter/opacity */
/* Example: var(--kc6-login-color) -> #EA7C07, darken 10% -> #d26e06 */
/* For simplicity, I will use a slightly darker color manually if needed or rely on default hover behavior */