
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #FFFEF9;
      color: #17212f;
    }

    .service-benefits-section {
      width: 100%;
      padding: 46px 20px;
      background: #FFFEF9;
      overflow: hidden;
    }

    .service-benefits-box {
      max-width: 1180px;
      margin: 0 auto;
      background: linear-gradient(135deg, #ffffff 0%, #fff9ef 55%, #f7efe3 100%);
      border: 1px solid rgba(0, 101, 107, 0.12);
      border-radius: 22px;
      padding: 26px 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      box-shadow: 0 18px 45px rgba(20, 37, 52, 0.08);
      overflow: hidden;
      position: relative;
      animation: fadeUp 0.8s ease both;
    }

    .service-benefits-box::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 22px;
      pointer-events: none;
      background:
        radial-gradient(circle at top left, rgba(0, 101, 107, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(231, 126, 35, 0.10), transparent 34%);
    }

    .benefit-item {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 10px 28px;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
      border-radius: 18px;
      animation: fadeUp 0.7s ease both;
    }

    .benefit-item:nth-child(1) {
      animation-delay: 0.05s;
    }

    .benefit-item:nth-child(2) {
      animation-delay: 0.15s;
    }

    .benefit-item:nth-child(3) {
      animation-delay: 0.25s;
    }

    .benefit-item:nth-child(4) {
      animation-delay: 0.35s;
    }

    .benefit-item:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 14px 30px rgba(0, 101, 107, 0.10);
    }

    .benefit-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 14px;
      width: 1px;
      height: 112px;
      background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 101, 107, 0.18),
        transparent
      );
    }

    .benefit-icon-wrap {
      width: 56px;
      height: 56px;
      margin-bottom: 14px;
      border-radius: 18px;
      background: rgba(0, 101, 107, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.35s ease, background 0.35s ease;
    }

    .benefit-item:hover .benefit-icon-wrap {
      transform: scale(1.08) rotate(-2deg);
      background: rgba(0, 101, 107, 0.12);
    }

    .benefit-icon {
      width: 38px;
      height: 38px;
      color: #00656b;
      stroke-dasharray: 120;
      stroke-dashoffset: 120;
      animation: drawIcon 1.4s ease forwards;
    }

    .benefit-item:nth-child(1) .benefit-icon {
      animation-delay: 0.15s;
    }

    .benefit-item:nth-child(2) .benefit-icon {
      animation-delay: 0.3s;
    }

    .benefit-item:nth-child(3) .benefit-icon {
      animation-delay: 0.45s;
    }

    .benefit-item:nth-child(4) .benefit-icon {
      animation-delay: 0.6s;
    }

    .benefit-title {
      font-size: 16px;
      line-height: 1.35;
      font-weight: 800;
      color: #17212f;
      margin-bottom: 10px;
    }

    .benefit-text {
      font-size: 14px;
      line-height: 1.58;
      color: #263241;
      max-width: 225px;
    }

    .mobile-swipe-hint {
      display: none;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes drawIcon {
      to {
        stroke-dashoffset: 0;
      }
    }

    @media (max-width: 900px) {
      .service-benefits-box {
        grid-template-columns: repeat(2, 1fr);
        padding: 22px 18px;
      }

      .benefit-item {
        padding: 24px 22px;
        min-height: 165px;
      }

      .benefit-item:not(:last-child)::after {
        display: none;
      }

      .benefit-item:nth-child(1),
      .benefit-item:nth-child(2) {
        border-bottom: 1px solid rgba(0, 101, 107, 0.12);
      }

      .benefit-item:nth-child(1),
      .benefit-item:nth-child(3) {
        border-right: 1px solid rgba(0, 101, 107, 0.12);
      }
    }

    @media (max-width: 560px) {
      .service-benefits-section {
        padding: 30px 0;
        background: #FFFEF9;
      }

      .service-benefits-box {
        width: 100%;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 22px 16px 28px;
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        -webkit-overflow-scrolling: touch;
        box-shadow: none;
        background: linear-gradient(135deg, #ffffff 0%, #fff8ee 100%);
      }

      .service-benefits-box::-webkit-scrollbar {
        display: none;
      }

      .benefit-item {
        flex: 0 0 84%;
        min-height: 205px;
        padding: 30px 22px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(0, 101, 107, 0.12) !important;
        border-radius: 20px;
        box-shadow: 0 12px 30px rgba(20, 37, 52, 0.09);
        scroll-snap-align: start;
        justify-content: center;
      }

      .benefit-item::after {
        display: none !important;
      }

      .benefit-item:hover {
        transform: none;
      }

      .benefit-icon-wrap {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        margin-bottom: 16px;
      }

      .benefit-icon {
        width: 41px;
        height: 41px;
      }

      .benefit-title {
        font-size: 18px;
        margin-bottom: 12px;
      }

      .benefit-text {
        font-size: 15px;
        line-height: 1.65;
        max-width: 270px;
      }

      .mobile-swipe-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-top: 14px;
      }

      .mobile-swipe-hint span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(0, 101, 107, 0.28);
        animation: dotPulse 1.5s ease infinite;
      }

      .mobile-swipe-hint span:nth-child(2) {
        animation-delay: 0.2s;
      }

      .mobile-swipe-hint span:nth-child(3) {
        animation-delay: 0.4s;
      }
    }

    @keyframes dotPulse {
      0%, 100% {
        transform: scale(1);
        background: rgba(0, 101, 107, 0.28);
      }
      50% {
        transform: scale(1.35);
        background: rgba(0, 101, 107, 0.75);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .service-benefits-box,
      .benefit-item,
      .benefit-icon,
      .mobile-swipe-hint span {
        animation: none;
      }

      .benefit-icon {
        stroke-dashoffset: 0;
      }

      .benefit-item,
      .benefit-icon-wrap {
        transition: none;
      }
    }
  