    .wp-section {
      background: #ffffff;
      padding:50px 0;
      font-family: 'Inter', sans-serif;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .wp-section .top-row {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 32px;
       text-align:left;
      margin-bottom: 48px;
    }

    .wp-section .left-head {
      width: 70%;
    }

    .wp-section .right-desc {
      width: 30%;
    }

    .wp-section .right-desc {
      max-width: 400px;

    }

    .wp-section .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background-color: #D45A240D;
      border: 1px solid #D45A2499;
      border-radius: 999px;
      padding: 10px 14px;
      margin-bottom: 20px;
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      font-family: 'DM Sans', sans-serif;

    }

    .wp-section .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #D45A24;
    }

    .wp-section .main-heading {
      font-family: 'DM Sans', sans-serif;
      color: #1B1C37;
      margin: 0;
      font-weight: 800;
      font-size: 44px;
      line-height: 54px;

    }

    .wp-section .main-heading span {
      font-style: italic;
      background: linear-gradient(90deg, #1B1C37 0%, #D45A24 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .wp-section .desc-text {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 16px;
      line-height: 26px;
      letter-spacing: 0%;
    }

    .wp-section .cards-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin: 0 -1px;
      text-align:left;
    }

    .wp-section .feat-card {
      position: relative;
      padding: 20px;
      flex: 1 1 23%;
      box-sizing: border-box;
    }

    .wp-section .feat-card:nth-child(-n+3)::after {
      position: absolute;
      content: "";
      width: 200px;
      height: 1px;
      background: linear-gradient(330deg, rgba(103, 92, 231, 0) 0%, #675CE7 50%, rgba(103, 92, 231, 0) 100%);
      bottom: 0;
      left: 200px;
      right: 0px;
    }

    .wp-section .feat-card:nth-child(-n+3):before {
      position: absolute;
      content: "";
      height: 197px;
      width: 1px;
      background: linear-gradient(180deg, rgba(103, 92, 231, 0) 0%, #675CE7 50%, rgba(103, 92, 231, 0) 100%);
      right: 0;
      bottom: -94px;
    }

    .wp-section .icon-box {
      margin-bottom: 20px;
    }

    .wp-section .icon-box img {
      width: 54px;
      height: 54px;

    }

    .wp-section .feat-title {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 26px;
      margin: 0 0 8px;
      color: #000;
    }

    .wp-section .feat-desc {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      color: #252525;

    }
    @media (max-width: 1200px) {
      .wp-section .feat-card {
        flex: 1 1 31%;
      }
    }

    @media (max-width: 991px) {
      .wp-section .wp-section {
        padding: 60px 0;
      }

      .wp-section .feat-card {
        flex: 1 1 48%;
      }
      .wp-section .main-heading {
        font-size: 36px;
      }

      .wp-section .feat-card:nth-child(-n+3)::after,
      .wp-section .feat-card:nth-child(-n+3):before {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .wp-section {
        padding: 40px 0;
      }

      .wp-section .feat-card {
        flex: 1 1 100%;
      }

      .wp-section .top-row {
        flex-direction: column;
        gap: 20px;
       
        margin-bottom: 40px;
      }

      .wp-section .left-head,
      .wp-section .right-desc {
        width: 100%;
        max-width: 100%;
      }

      .wp-section .main-heading {
        font-size: 32px;
      }

      .wp-section .feat-card {
        padding: 24px 20px;
      }
    }

    @media (max-width: 480px) {
      .wp-section .main-heading {
        font-size: 28px;
      }
    }
  </style>