 /* ================= SERVICE DETAIL ================= */
    .service-detail {
      padding: 50px 0;
    }

    .service-detail h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .service-detail p {
      color: #555;
      margin-bottom: 18px;
    }

    .service-points {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-points li {
      margin-bottom: 10px;
      font-size: 15px;
    }

    .service-points i {
      color: #e10600;
      margin-right: 8px;
    }

    /* ================= SIDEBAR ================= */
    .service-sidebar {
      position: sticky;
      top: 120px;
    }

    .sidebar-box {
      background: #f6f6f6;
      padding: 28px;
      border-radius: 14px;
      margin-bottom: 30px;
      border-left: 4px solid #e10600;
    }

    .sidebar-box h5 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .related-services {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .related-services li {
      margin-bottom: 12px;
    }

    .related-services a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14.5px;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .related-services i {
      color: #e10600;
      font-size: 18px;
    }

    .related-services a:hover {
      color: #e10600;
      transform: translateX(6px);
    }

    .service-hero-img {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    }

    .service-hero-img img {
      width: 100%;
      height: 380px;
      object-fit: cover;
    }

    .service-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 28px 0;
    }

    .service-main h4 {
      position: relative;
      padding-bottom: 8px;
    }

    .service-main h4::after {
      content: "";
      width: 60px;
      height: 3px;
      background: #e10600;
      position: absolute;
      left: 0;
      bottom: 0;
    }

    /* FEATURE CARD */
    .feature-box {
      background: #fff;
      padding: 15px;
      border-radius: 16px;
      position: relative;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      overflow: hidden;
    }

    /* RED ACCENT STRIP */
    .feature-box::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 4px;
      background: #e10600;
    }

    /* ICON CIRCLE */
    .feature-box i {
      width: 46px;
      height: 46px;
      background: rgba(225, 6, 0, 0.1);
      color: #e10600;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 8px;
      transition: all 0.35s ease;
    }

    /* TEXT */
    .feature-box h6 {
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 15px;
    }

    .feature-box p {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
    }

    /* HOVER EFFECT */
    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    }

    .feature-box:hover i {
      background: #e10600;
      color: #fff;
      transform: scale(1.1);
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 992px) {
      .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
    }

    @media (max-width: 991px) {
      .service-sidebar {
        position: static;
        margin-top: 40px;
      }
    }

    @media (max-width: 768px) {
      .epc-breadcrumbs h1 {
        font-size: 28px;
      }

      .service-detail h2 {
        font-size: 26px;
      }

      .service-hero-img img {
        height: 240px;
      }
    }

    @media (max-width: 576px) {
      .service-features {
        grid-template-columns: 1fr;
        /* stack */
      }
    }