

  .feature-hero {
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    padding: 100px 0 70px;
    border-bottom: 1px solid #e9eef5;
  }

  .feature-badge {
    display: inline-block;
    background: #e8f1ff;
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
  }

  .feature-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
  }
  .feature-hero p {
    font-size: 1.1rem;
    color: #5b6472;
    max-width: 700px;
    margin: 20px auto 0;
  }

  .hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
  }

  .feature-section {
    padding: 80px 0;
  }

  .feature-section.alt-bg {
    background: #f8fafc;
  }

  .feature-tag {
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    margin-bottom: 10px;
  }

  .feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 18px;
  }

  .feature-description {
    font-size: 1.05rem;
    color: #5f6b7a;
    margin-bottom: 22px;
    line-height: 1.8;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.7;
  }

  .feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #198754;
    font-weight: 700;
  }

  .feature-image-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    padding: 14px;
    border: 1px solid #edf1f7;
  }

  .feature-image-card img {
    width: 100%;
    border-radius: 14px;
    display: block;
  }

  .feature-image-placeholder {
    min-height: 340px;
    border-radius: 14px;
    background: linear-gradient(135deg, #edf4ff, #f8fbff);
    border: 2px dashed #c8d7ee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
    font-weight: 600;
    padding: 30px;
  }

  .mini-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
  }

  .mini-card {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  }

  .mini-card i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-bottom: 10px;
  }

  .mini-card h6 {
    margin-bottom: 8px;
    font-weight: 700;
    color: #1f2937;
  }

  .mini-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
  }

  .cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: #fff;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .cta-section p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
  }

  .cta-section .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    margin: 6px;
  }

  @media (max-width: 991px) {
    .feature-hero {
      padding: 80px 0 55px;
    }

    .feature-hero h1 {
      font-size: 2.2rem;
    }

    .feature-title {
      font-size: 1.7rem;
      margin-top: 28px;
    }

    .mini-card-grid {
      grid-template-columns: 1fr;
    }
  }



