/* style/index-k9cc-features.css */
.page-index-k9cc-features {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-index-k9cc-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-k9cc-features__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-k9cc-features__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-index-k9cc-features__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-index-k9cc-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index-k9cc-features__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  opacity: 0.2;
  z-index: 0;
}

.page-index-k9cc-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-k9cc-features__btn {
  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;
  white-space: nowrap;
}

.page-index-k9cc-features__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-index-k9cc-features__btn--primary:hover {
  background-color: #e0a800;
  color: #fff;
  border-color: #e0a800;
}

.page-index-k9cc-features__btn--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-index-k9cc-features__btn--secondary:hover {
  background-color: #007bff;
  color: #fff;
}

.page-index-k9cc-features__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-index-k9cc-features__section:nth-of-type(even) {
  background-color: #fff;
}

.page-index-k9cc-features__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 50px;
}

.page-index-k9cc-features__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-index-k9cc-features__text-content,
.page-index-k9cc-features__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-index-k9cc-features__text-content h3 {
  font-size: 1.5em;
  color: #0056b3;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index-k9cc-features__text-content p {
  margin-bottom: 15px;
  color: #555;
}

.page-index-k9cc-features__text-content .page-index-k9cc-features__btn {
  margin-top: 20px;
}

.page-index-k9cc-features__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-k9cc-features__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-index-k9cc-features__cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-k9cc-features__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.page-index-k9cc-features__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-k9cc-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-k9cc-features__cta-buttons .page-index-k9cc-features__btn--primary {
  background-color: #ffc107;
  color: #333;
  border-color: #ffc107;
}

.page-index-k9cc-features__cta-buttons .page-index-k9cc-features__btn--primary:hover {
  background-color: #e0a800;
  color: #fff;
  border-color: #e0a800;
}

.page-index-k9cc-features__cta-buttons .page-index-k9cc-features__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.page-index-k9cc-features__cta-buttons .page-index-k9cc-features__btn--secondary:hover {
  background-color: #ffc107;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-k9cc-features__hero-title {
    font-size: 2em;
  }

  .page-index-k9cc-features__hero-description {
    font-size: 1em;
  }

  .page-index-k9cc-features__section-title {
    font-size: 1.8em;
  }

  .page-index-k9cc-features__content-wrapper {
    flex-direction: column;
  }

  .page-index-k9cc-features__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-index-k9cc-features__cta-title {
    font-size: 2em;
  }

  .page-index-k9cc-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-k9cc-features__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-index-k9cc-features__hero-title {
    font-size: 1.6em;
  }

  .page-index-k9cc-features__section-title {
    font-size: 1.5em;
  }

  .page-index-k9cc-features__cta-title {
    font-size: 1.8em;
  }
  .page-index-k9cc-features__hero-image-wrapper {
    display: none; /* Hide on very small screens for better readability */
  }
}