
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

    .rd-support-section {
      position: relative;
      left: 50%;
      right: 50%;
      width: 100vw;
      max-width: 100vw;
      margin-left: -50vw;
      margin-right: -50vw;
      background: #ffffff;
      font-family: 'Poppins', Arial, Helvetica, sans-serif;
      color: #111111;
      overflow: hidden;
      padding: 0 0 24px;
    }

    .rd-support-section * {
      box-sizing: border-box;
    }

    .rd-container {
      width: min(1800px, calc(100vw - 80px));
      max-width: 1800px;
      margin: 0 auto;
      position: relative;
    }

    .rd-hero {
      position: relative;
      width: 100%;
      min-height: 560px;
      display: grid;
      grid-template-columns: 46% 54%;
      background: #ffffff;
    }

    .rd-hero-content {
      padding: 72px 70px 170px 85px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .rd-eyebrow {
      position: relative;
      margin: 0 0 22px;
      padding-bottom: 12px;
      font-size: 15px;
      line-height: 1.3;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #c00000;
      text-transform: uppercase;
    }

    .rd-eyebrow::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 46px;
      height: 2px;
      background: #c00000;
    }

    .rd-title {
      margin: 0;
      max-width: 620px;
      font-size: 50px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: #050505;
    }

    .rd-desc {
      margin: 28px 0 42px;
      max-width: 620px;
      font-size: 17px;
      line-height: 1.75;
      font-weight: 400;
      color: #555555;
    }

    .rd-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: 760px;
    }

    .rd-stat {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 22px;
      border-right: 1px solid #dddddd;
    }

    .rd-stat:first-child {
      padding-left: 0;
    }

    .rd-stat:last-child {
      border-right: none;
      padding-right: 0;
    }

    .rd-stat-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      color: #c00000;
    }

    .rd-stat-title {
      margin: 0;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 700;
      color: #111111;
    }

    .rd-stat-text {
      margin: 5px 0 0;
      font-size: 12px;
      line-height: 1.35;
      font-weight: 400;
      color: #555555;
    }

    .rd-hero-image {
      position: relative;
      width: 100%;
      min-height: 560px;
      overflow: hidden;
      background: #f3f3f3;
    }

    .rd-hero-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .rd-process-wrap {
      position: relative;
      z-index: 5;
      width: 100%;
      margin: -135px auto 0;
      padding: 34px 40px;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 8px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    .rd-process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 42px;
    }

    .rd-process-item {
      display: grid;
      grid-template-columns: 1fr 170px;
      gap: 24px;
      align-items: center;
      min-height: 150px;
    }

    .rd-number {
      margin: 0 0 14px;
      font-size: 30px;
      line-height: 1;
      font-weight: 700;
      color: #c00000;
    }

    .rd-process-title {
      margin: 0 0 16px;
      font-size: 16px;
      line-height: 1.35;
      font-weight: 700;
      color: #111111;
    }

    .rd-process-text {
      margin: 0;
      font-size: 12.5px;
      line-height: 1.65;
      font-weight: 400;
      color: #333333;
    }

    .rd-process-img {
      width: 170px;
      height: 135px;
      border-radius: 5px;
      overflow: hidden;
      background: #eeeeee;
    }

    .rd-process-img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    @media (max-width: 1500px) {
      .rd-container {
        width: calc(100vw - 60px);
        max-width: 1800px;
      }

      .rd-hero-content {
        padding-left: 65px;
      }

      .rd-title {
        font-size: 44px;
      }

      .rd-process-grid {
        gap: 28px;
      }

      .rd-process-item {
        grid-template-columns: 1fr 145px;
      }

      .rd-process-img {
        width: 145px;
        height: 120px;
      }
    }

    @media (max-width: 1200px) {
      .rd-container {
        width: calc(100vw - 40px);
      }

      .rd-hero {
        grid-template-columns: 1fr;
      }

      .rd-hero-content {
        padding: 60px 40px 70px;
      }

      .rd-hero-image {
        min-height: 420px;
      }

      .rd-process-wrap {
        margin: -60px auto 40px;
      }

      .rd-process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .rd-process-item {
        grid-template-columns: 1fr 160px;
      }

      .rd-process-img {
        width: 160px;
        height: 125px;
      }
    }

    @media (max-width: 768px) {
      .rd-container {
        width: calc(100vw - 28px);
      }

      .rd-hero-content {
        padding: 48px 22px 50px;
      }

      .rd-eyebrow {
        font-size: 13px;
      }

      .rd-title {
        font-size: 32px;
        line-height: 1.18;
      }

      .rd-desc {
        margin: 22px 0 32px;
        font-size: 15px;
        line-height: 1.7;
      }

      .rd-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
      }

      .rd-stat {
        padding: 0 16px 0 0;
        border-right: none;
      }

      .rd-hero-image {
        min-height: 300px;
      }

      .rd-process-wrap {
        margin: -36px auto 36px;
        padding: 24px 18px;
      }

      .rd-process-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .rd-process-item {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .rd-process-img {
        width: 100%;
        height: 180px;
      }
    }
  