/* style/blog-why-ke9-is-your-best-choice.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-why-ke9-is-your-best-choice {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-why-ke9-is-your-best-choice__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-why-ke9-is-your-best-choice__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-why-ke9-is-your-best-choice__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-why-ke9-is-your-best-choice__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-why-ke9-is-your-best-choice__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect, not covering image */
  background: rgba(10, 10, 10, 0.8);
  border-radius: 10px;
}

.page-blog-why-ke9-is-your-best-choice__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-blog-why-ke9-is-your-best-choice__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-why-ke9-is-your-best-choice__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-why-ke9-is-your-best-choice__btn-primary,
.page-blog-why-ke9-is-your-best-choice__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, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-why-ke9-is-your-best-choice__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-why-ke9-is-your-best-choice__btn-primary:hover {
  background: #1e87c0;
  border-color: #1e87c0;
}

.page-blog-why-ke9-is-your-best-choice__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-why-ke9-is-your-best-choice__btn-secondary:hover {
  background: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
}

/* Content Sections */
.page-blog-why-ke9-is-your-best-choice__content-section {
  padding: 60px 0;
}

.page-blog-why-ke9-is-your-best-choice__section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
  font-weight: bold;
}

.page-blog-why-ke9-is-your-best-choice__sub-title {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0;
  font-weight: bold;
}

.page-blog-why-ke9-is-your-best-choice__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0; /* Default for dark sections */
}

.page-blog-why-ke9-is-your-best-choice__feature-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog-why-ke9-is-your-best-choice__feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

.page-blog-why-ke9-is-your-best-choice__feature-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.page-blog-why-ke9-is-your-best-choice__feature-block p {
  flex: 2;
  min-width: 300px;
}

/* Color Schemes */
.page-blog-why-ke9-is-your-best-choice__dark-bg {
  background-color: #0a0a0a; /* Body background color */
  color: #ffffff;
}

.page-blog-why-ke9-is-your-best-choice__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: #ffffff;
}

.page-blog-why-ke9-is-your-best-choice__light-bg .page-blog-why-ke9-is-your-best-choice__section-title,
.page-blog-why-ke9-is-your-best-choice__light-bg .page-blog-why-ke9-is-your-best-choice__sub-title {
  color: #26A9E0;
}

.page-blog-why-ke9-is-your-best-choice__light-bg .page-blog-why-ke9-is-your-best-choice__paragraph {
  color: #f0f0f0;
}

/* Keyword highlighting */
.page-blog-why-ke9-is-your-best-choice__keyword {
  color: #26A9E0;
  font-weight: bold;
}

/* FAQ Section */
.page-blog-why-ke9-is-your-best-choice__faq-list {
  margin-top: 40px;
}

.page-blog-why-ke9-is-your-best-choice__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-why-ke9-is-your-best-choice__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-blog-why-ke9-is-your-best-choice__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-blog-why-ke9-is-your-best-choice__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-why-ke9-is-your-best-choice__faq-item[open] .page-blog-why-ke9-is-your-best-choice__faq-toggle {
  content: '−';
}

.page-blog-why-ke9-is-your-best-choice__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
}

.page-blog-why-ke9-is-your-best-choice__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-why-ke9-is-your-best-choice__faq-item summary {
  list-style: none;
}

/* Conclusion Section */
.page-blog-why-ke9-is-your-best-choice__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

.page-blog-why-ke9-is-your-best-choice__conclusion-section .page-blog-why-ke9-is-your-best-choice__section-title {
  color: #26A9E0;
}

.page-blog-why-ke9-is-your-best-choice__conclusion-section .page-blog-why-ke9-is-your-best-choice__paragraph {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-why-ke9-is-your-best-choice__hero-content {
    margin-top: -80px;
  }
  .page-blog-why-ke9-is-your-best-choice__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-why-ke9-is-your-best-choice__section-title {
    font-size: 2rem;
  }
  .page-blog-why-ke9-is-your-best-choice__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-why-ke9-is-your-best-choice {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-why-ke9-is-your-best-choice__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-why-ke9-is-your-best-choice__hero-content {
    margin-top: -60px;
    padding: 20px;
  }
  .page-blog-why-ke9-is-your-best-choice__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-why-ke9-is-your-best-choice__description,
  .page-blog-why-ke9-is-your-best-choice__paragraph {
    font-size: 1rem;
  }
  .page-blog-why-ke9-is-your-best-choice__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-why-ke9-is-your-best-choice__btn-primary,
  .page-blog-why-ke9-is-your-best-choice__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-why-ke9-is-your-best-choice__feature-block {
    flex-direction: column;
    align-items: center;
  }
  .page-blog-why-ke9-is-your-best-choice__feature-block:nth-child(even) {
    flex-direction: column;
  }
  .page-blog-why-ke9-is-your-best-choice__feature-image {
    min-width: unset;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  .page-blog-why-ke9-is-your-best-choice__feature-block p {
    min-width: unset;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-why-ke9-is-your-best-choice__section-title {
    font-size: 1.8rem;
  }
  .page-blog-why-ke9-is-your-best-choice__sub-title {
    font-size: 1.4rem;
  }
  .page-blog-why-ke9-is-your-best-choice__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-blog-why-ke9-is-your-best-choice__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-blog-why-ke9-is-your-best-choice__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-blog-why-ke9-is-your-best-choice__content-section,
  .page-blog-why-ke9-is-your-best-choice__conclusion-section {
    padding: 40px 0;
  }
}