/* style/blog-why-register-oke179.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-login-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
}

.page-blog-why-register-oke179 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light body background */
  background-color: var(--background-color); /* Matches body background */
}

.page-blog-why-register-oke179__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  background-color: var(--background-color);
}

.page-blog-why-register-oke179__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-why-register-oke179__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-why-register-oke179__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  position: relative; /* Ensure content is in normal flow below image */
  z-index: 1;
}

.page-blog-why-register-oke179__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-blog-why-register-oke179__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-color-dark);
}

.page-blog-why-register-oke179__section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-blog-why-register-oke179__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.page-blog-why-register-oke179__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-why-register-oke179__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-why-register-oke179__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color-dark);
}

.page-blog-why-register-oke179__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-why-register-oke179__feature-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark);
}

.page-blog-why-register-oke179__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-why-register-oke179__feature-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 400px; /* Max width for larger screens */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-why-register-oke179__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-why-register-oke179__feature-text {
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-blog-why-register-oke179__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-why-register-oke179__step-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  color: var(--text-color-dark);
}

.page-blog-why-register-oke179__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-why-register-oke179__step-text {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}

.page-blog-why-register-oke179__registration-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-why-register-oke179__registration-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-why-register-oke179__btn-primary,
.page-blog-why-register-oke179__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, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-why-register-oke179__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
  margin: 10px 5px;
}

.page-blog-why-register-oke179__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-why-register-oke179__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin: 10px 5px;
}

.page-blog-why-register-oke179__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-blog-why-register-oke179__cta-banner {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
  padding: 80px 20px;
}

.page-blog-why-register-oke179__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
}

.page-blog-why-register-oke179__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-blog-why-register-oke179__cta-button {
  margin-top: 20px;
}

.page-blog-why-register-oke179__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-blog-why-register-oke179__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-blog-why-register-oke179__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  color: var(--primary-color);
  user-select: none;
}

.page-blog-why-register-oke179__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-why-register-oke179__faq-question::marker {
  display: none;
}

.page-blog-why-register-oke179__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-why-register-oke179__faq-item[open] .page-blog-why-register-oke179__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-why-register-oke179__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-blog-why-register-oke179__final-cta {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
  padding: 80px 20px;
}

.page-blog-why-register-oke179__final-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
}

.page-blog-why-register-oke179__final-cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-why-register-oke179__main-title {
    font-size: 2.5em;
  }
  .page-blog-why-register-oke179__section-title {
    font-size: 2em;
  }
  .page-blog-why-register-oke179__cta-title,
  .page-blog-why-register-oke179__final-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-why-register-oke179 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-why-register-oke179__hero-section {
    padding: 10px 0 40px 0;
  }
  
  .page-blog-why-register-oke179__hero-content {
    padding: 20px 15px;
  }

  .page-blog-why-register-oke179__main-title {
    font-size: 2em;
  }
  
  .page-blog-why-register-oke179__description {
    font-size: 1em;
  }

  .page-blog-why-register-oke179__section {
    padding: 40px 0;
  }

  .page-blog-why-register-oke179__container {
    padding: 0 15px;
  }

  .page-blog-why-register-oke179__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-why-register-oke179__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-blog-why-register-oke179__features-grid,
  .page-blog-why-register-oke179__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-why-register-oke179__feature-card,
  .page-blog-why-register-oke179__step-card {
    padding: 20px;
  }

  .page-blog-why-register-oke179__feature-title {
    font-size: 1.3em;
  }

  .page-blog-why-register-oke179__step-title {
    font-size: 1.2em;
  }

  .page-blog-why-register-oke179__cta-banner,
  .page-blog-why-register-oke179__final-cta {
    padding: 50px 15px;
  }

  .page-blog-why-register-oke179__cta-title,
  .page-blog-why-register-oke179__final-cta-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-why-register-oke179__cta-text,
  .page-blog-why-register-oke179__final-cta-text {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .page-blog-why-register-oke179__btn-primary,
  .page-blog-why-register-oke179__btn-secondary {
    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;
    margin: 10px 0;
  }
  
  .page-blog-why-register-oke179__hero-content .page-blog-why-register-oke179__btn-primary {
    max-width: 280px !important; /* Adjust if needed for single button */
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-why-register-oke179__cta-content,
  .page-blog-why-register-oke179__final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .page-blog-why-register-oke179__cta-content .page-blog-why-register-oke179__cta-button:first-of-type {
    margin-bottom: 0; /* Adjust spacing between buttons */
  }

  .page-blog-why-register-oke179__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-why-register-oke179__faq-answer {
    padding: 15px;
    padding-top: 0;
  }

  /* Image responsive rules for mobile */
  .page-blog-why-register-oke179 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-why-register-oke179__hero-image-wrapper,
  .page-blog-why-register-oke179__registration-image-wrapper,
  .page-blog-why-register-oke179__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0; /* Images in hero/registration are full width, no horizontal padding here */
    padding-right: 0;
  }

  .page-blog-why-register-oke179__feature-card,
  .page-blog-why-register-oke179__step-card,
  .page-blog-why-register-oke179__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure no image filter is applied */
  .page-blog-why-register-oke179 img {
    filter: none !important;
  }
}

/* Contrast Fixes */
.page-blog-why-register-oke179__dark-bg {
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-blog-why-register-oke179__light-bg {
  background: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-blog-why-register-oke179__medium-bg {
  background: #f0f0f0; /* Example for medium, ensure contrast */
  color: var(--black-color);
}