
    body {
      margin: 0;
      font-family: sans-serif;
      background-color: #ffffff;
    }
    .shell-header {
      background: #ffffff;
      box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.05);
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .shell-header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .shell-logo {
      height: 40px;
    }
    .shell-nav {
      display: flex;
      gap: 24px;
      align-items: center;
    }
    .shell-nav-item {
      font-family: Neris, sans-serif !important;
      font-size: 16px;
      font-weight: 600;
      color: #333;
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
    }
    .shell-banner {
      width: 100%;
      background: #fdf5f5;
    }
    .shell-banner-img {
      width: 100%;
      height: auto;
      aspect-ratio: 36 / 9;
      display: block;
    }
    @media (max-width: 991px) {
      .shell-banner-img {
        aspect-ratio: 2 / 1;
      }
    }
    .shell-cards-section {
      margin-top: 1rem;
      padding: 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .shell-cards-title {
      font-size: 32px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 1.5rem;
      color: #333;
    }
    .shell-cards-title span {
      color: #dc3545;
    }
    .shell-services-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.875rem;
      justify-content: center;
    }
    @media (max-width: 991.98px) {
      .shell-services-grid {
        gap: 0.75rem;
      }
    }
    @media (min-width: 992px) {
      .shell-services-grid {
        gap: 1rem;
      }
    }
    .shell-card-wrapper {
      width: 185px;
      height: 155px;
      box-sizing: border-box;
    }
    @media (max-width: 991.98px) {
      .shell-card-wrapper {
        width: calc(50% - 0.75rem);
      }
    }
    @media (min-width: 992px) {
      .shell-card-wrapper:nth-child(-n+4) {
        flex: 0 0 calc(25% - 1rem);
        max-width: calc(18% - 1rem);
      }
      .shell-card-wrapper:nth-child(n+5) {
        flex: 0 0 calc(25% - 1rem);
        max-width: calc(18% - 1rem);
      }
      .shell-card-wrapper:nth-child(5) {
        margin-left: calc(12.5% + 0.5rem);
      }
      .shell-card-wrapper:nth-child(7) {
        margin-right: calc(12.5% + 0.5rem);
      }
    }
    .shell-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 0.875rem;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 120px;
      box-shadow: 0px 4px 12px 0px rgba(1, 15, 51, 0.08);
      box-sizing: border-box;
    }
    @media (max-width: 575.98px) {
      .shell-card {
        padding: 0.75rem;
        min-height: 110px;
        border-radius: 10px;
      }
    }
    @media (min-width: 992px) {
      .shell-card {
        padding: 1rem;
        min-height: 130px;
      }
    }
    .shell-card-icon {
      text-align: center;
      margin-bottom: 0.5rem;
    }
    .shell-card-icon img {
      width: 52px;
      height: 52px;
      object-fit: contain;
    }
    @media (max-width: 575.98px) {
      .shell-card-icon img {
        width: 44px;
        height: 44px;
      }
    }
    @media (min-width: 992px) {
      .shell-card-icon img {
        width: 53px;
        height: 53px;
        object-fit: cover;
      }
    }
    .shell-card-content {
      flex: 1;
      position: relative;
      z-index: 1;
      padding-right: 45px;
      padding-bottom: 30px;
      text-align: left;
    }
    .shell-card-content .title {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 0.2rem;
      color: #dc3545;
      margin-top: 0;
    }
    .shell-card-content .subtitle {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.25;
      color: #333;
      margin: 0;
    }
    @media (max-width: 575.98px) {
      .shell-card-content .title { font-size: 13px; }
      .shell-card-content .subtitle { font-size: 11px; }
    }
    @media (min-width: 992px) {
      .shell-card-content .title { font-size: 16px; }
      .shell-card-content .subtitle { font-size: 14px; }
    }
    .shell-arrow-icon {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: rgba(241, 241, 241, 0.69);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translate(35%, 35%);
    }
    .shell-arrow-icon img {
      width: 18px;
      height: 18px;
    }
    @media (min-width: 992px) {
      .shell-arrow-icon {
        width: 85px;
        height: 85px;
      }
    }

    /* Skeleton UI Styles */
    @keyframes shimmer {
      0% {
        background-position: -1000px 0;
      }
      100% {
        background-position: 1000px 0;
      }
    }
    .skel-box {
      background: #f6f7f8;
      background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
      background-repeat: no-repeat;
      background-size: 1000px 100%;
      animation-duration: 1.5s;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
      animation-name: shimmer;
      animation-timing-function: linear;
      border-radius: 4px;
    }
    .skel-logo { width: 120px; height: 35px; }
    .skel-nav-item { width: 60px; height: 16px; border-radius: 8px; }
    .skel-banner { width: 100%; }
    .skel-title-main { width: 300px; height: 32px; margin: 0 auto 1.5rem; border-radius: 8px; max-width: 80%; }
    .skel-card-icon { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 0.5rem; }
    .skel-card-title { width: 60%; height: 16px; margin-bottom: 6px; border-radius: 4px; }
    .skel-card-sub { width: 80%; height: 14px; border-radius: 4px; }
    .skel-arrow { width: 60px; height: 60px; border-radius: 50%; }
    @media (max-width: 575.98px) {
      .skel-card-icon { width: 44px; height: 44px; }
    }
    @media (min-width: 992px) {
      .skel-card-icon { width: 53px; height: 53px; }
      .skel-arrow { width: 85px; height: 85px; }
    }