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

    .pd-delivery-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: 76px 0 80px;
    }

    .pd-delivery-section * {
      box-sizing: border-box;
    }

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

    .pd-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;
    }

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

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

    .pd-desc {
      margin: 22px 0 36px;
      max-width: 820px;
      font-size: 17px;
      line-height: 1.75;
      font-weight: 400;
      color: #555555;
    }

    .pd-main {
      display: grid;
      grid-template-columns: 600px 1170px;
      gap: 30px;
      align-items: start;
    }

    .pd-step-card {
      width: 600px;
      height: 920px;
      padding: 22px 32px;
      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);
    }

    .pd-step {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 18px;
      padding: 23px 0;
      border-bottom: 1px solid #DDDDDD;
    }

    .pd-step:last-child {
      border-bottom: none;
    }

    .pd-step-number {
      margin: 0;
      font-size: 30px;
      line-height: 1;
      font-weight: 700;
      color: transparent;
      -webkit-text-stroke: 1.2px #C00000;
    }

    .pd-step-title {
      margin: 0 0 10px;
      font-size: 16px;
      line-height: 1.35;
      font-weight: 700;
      color: #111111;
      text-transform: uppercase;
    }

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

    .pd-gallery {
      width: 1170px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .pd-gallery-top {
      width: 1170px;
      display: grid;
      grid-template-columns: 710px 430px;
      gap: 30px;
      align-items: start;
    }

    .pd-drawing-img {
      width: 710px;
      height: 560px;
      background: #F3F3F3;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

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

    .pd-right-column {
      width: 430px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .pd-certificate-box {
      width: 430px;
      height: 290px;
      padding: 14px 16px 16px;
      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);
    }

    .pd-logo-row {
      height: 42px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .pd-logo-tuv {
      width: 44px;
      height: 44px;
      object-fit: contain;
      display: block;
    }

    .pd-logo-intertek {
      width: 92px;
      height: 32px;
      object-fit: contain;
      display: block;
    }

    .pd-certificate-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      height: 206px;
    }

    .pd-certificate-img {
      width: 100%;
      height: 206px;
      background: #F3F3F3;
      border: 1px solid #DDDDDD;
      overflow: hidden;
    }

    .pd-certificate-img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .pd-factory-img {
      width: 430px;
      height: 250px;
      background: #F3F3F3;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

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

    .pd-gallery-bottom {
      width: 1170px;
      display: grid;
      grid-template-columns: 450px 350px 330px;
      gap: 20px;
      align-items: start;
    }

    .pd-bottom-img {
      height: 320px;
      background: #F3F3F3;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

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

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

      .pd-main {
        grid-template-columns: 1fr;
      }

      .pd-step-card {
        width: 100%;
        height: auto;
      }

      .pd-gallery,
      .pd-gallery-top,
      .pd-gallery-bottom {
        width: 100%;
      }

      .pd-gallery-top {
        grid-template-columns: 1.5fr 1fr;
      }

      .pd-drawing-img,
      .pd-right-column,
      .pd-certificate-box,
      .pd-factory-img {
        width: 100%;
      }

      .pd-gallery-bottom {
        grid-template-columns: 1.25fr 1fr 0.95fr;
      }
    }

    @media (max-width: 1200px) {
      .pd-delivery-section {
        padding: 60px 0;
      }

      .pd-container {
        width: calc(100vw - 40px);
      }

      .pd-gallery-top {
        grid-template-columns: 1fr;
      }

      .pd-drawing-img {
        height: 520px;
      }

      .pd-right-column {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

      .pd-gallery-bottom {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .pd-delivery-section {
        padding: 48px 0;
      }

      .pd-container {
        width: calc(100vw - 28px);
      }

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

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

      .pd-desc {
        margin: 20px 0 30px;
        font-size: 15px;
        line-height: 1.7;
      }

      .pd-step-card {
        padding: 10px 22px;
      }

      .pd-step {
        grid-template-columns: 58px 1fr;
        gap: 14px;
        padding: 20px 0;
      }

      .pd-step-number {
        font-size: 26px;
      }

      .pd-step-title {
        font-size: 15px;
      }

      .pd-step-text {
        font-size: 12px;
      }

      .pd-drawing-img {
        height: 360px;
      }

      .pd-right-column {
        grid-template-columns: 1fr;
      }

      .pd-certificate-box {
        height: auto;
      }

      .pd-certificate-row {
        height: auto;
      }

      .pd-certificate-img {
        height: 210px;
      }

      .pd-factory-img {
        height: 260px;
      }

      .pd-gallery-bottom {
        grid-template-columns: 1fr;
      }

      .pd-bottom-img {
        height: 260px;
      }
    }
  