/* style/blog-explore-q99-top-features.css */

/* Body background is #1a1a2e (dark), so text should be light by default for main content */
.page-blog-explore-q99-top-features {
  color: #ffffff; /* Default text color for the page */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-explore-q99-top-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-explore-q99-top-features__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.page-blog-explore-q99-top-features__hero-content {
  max-width: 900px;
  margin-top: 40px;
  z-index: 1; /* Ensure content is above any decorative elements if any */
}

.page-blog-explore-q99-top-features__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-explore-q99-top-features__intro-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-q99-top-features__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-explore-q99-top-features__btn-primary,
.page-blog-explore-q99-top-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-explore-q99-top-features__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-explore-q99-top-features__btn-primary:hover {
  background: #1e87b6;
  border-color: #1e87b6;
}

.page-blog-explore-q99-top-features__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-explore-q99-top-features__btn-secondary:hover {
  background: #ffffff;
  color: #26A9E0;
}

.page-blog-explore-q99-top-features__section {
  padding: 60px 20px;
}

.page-blog-explore-q99-top-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.page-blog-explore-q99-top-features__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-blog-explore-q99-top-features__dark-bg {
  background: #1a1a2e; /* Matches body background */
  color: #ffffff;
}

.page-blog-explore-q99-top-features__dark-section {
  background: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

.page-blog-explore-q99-top-features__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit from section background */
}

.page-blog-explore-q99-top-features__paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-blog-explore-q99-top-features__highlight {
  color: #EA7C07;
  font-weight: bold;
}

.page-blog-explore-q99-top-features__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-explore-q99-top-features__feature-card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-explore-q99-top-features__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-explore-q99-top-features__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-explore-q99-top-features__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-blog-explore-q99-top-features__card-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
  color: #f0f0f0;
}

.page-blog-explore-q99-top-features__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background: #EA7C07;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.page-blog-explore-q99-top-features__btn-link:hover {
  background: #c26505;
}

.page-blog-explore-q99-top-features__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-explore-q99-top-features__list-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  color: #f0f0f0;
}

.page-blog-explore-q99-top-features__list-item::before {
  content: '✔️';
  margin-right: 10px;
  font-size: 1.2rem;
}

.page-blog-explore-q99-top-features__faq-list {
  margin-top: 40px;
}

.page-blog-explore-q99-top-features__faq-item {
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-explore-q99-top-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333333;
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-explore-q99-top-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-explore-q99-top-features__faq-qtext {
  flex-grow: 1;
}

.page-blog-explore-q99-top-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-explore-q99-top-features__faq-item[open] .page-blog-explore-q99-top-features__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-explore-q99-top-features__faq-answer {
  padding: 20px;
  background: #f8f8f8;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

.page-blog-explore-q99-top-features__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-explore-q99-top-features__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-explore-q99-top-features__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-explore-q99-top-features__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-explore-q99-top-features__intro-text {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }

  .page-blog-explore-q99-top-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-explore-q99-top-features__btn-primary,
  .page-blog-explore-q99-top-features__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-explore-q99-top-features__section {
    padding: 40px 15px;
  }

  .page-blog-explore-q99-top-features__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-explore-q99-top-features__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-explore-q99-top-features__paragraph {
    font-size: 1rem;
    text-align: left;
  }

  .page-blog-explore-q99-top-features__image-content,
  .page-blog-explore-q99-top-features__hero-image,
  .page-blog-explore-q99-top-features__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    object-fit: cover;
  }

  .page-blog-explore-q99-top-features__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-explore-q99-top-features__feature-card {
    padding: 20px;
  }

  .page-blog-explore-q99-top-features__card-title {
    font-size: 1.3rem;
  }

  .page-blog-explore-q99-top-features__card-text {
    font-size: 0.95rem;
  }

  .page-blog-explore-q99-top-features__list-item {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-blog-explore-q99-top-features__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-explore-q99-top-features__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }
}