.service-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start; /* ensures sticky works correctly */
}

/* Sidebar */
.sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 80px; /* adjust based on your header/navbar height */
  height: max-content;
}
.sidebar h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #374151;
}
.sidebar .nav-link {
  color: #374151;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar .nav-link:hover {
  background: #f3f4f6;
}
.sidebar .nav-link.active {
  background: #0d6efd;
  color: #fff;
}

/* Content */
.content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.lead {
  font-size: 1.1rem;
  color: #4b5563;
}
.btn-primary {
  border-radius: 10px;
  padding: 10px 18px;
}
.card {
  border: none;
  border-radius: 16px;
}
.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
.faq .accordion-button {
  border-radius: 8px;
  font-weight: 500;
}
.cta-box {
  background: #0d6efd;
  color: #fff;
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.cta-box h5 {
  font-weight: 700;
}

/* Highlighted Cards */
.feature-card {
  border: none;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(13,110,253,0.2);
}
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #0d6efd;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto;
}
