
  html {
    scroll-behavior: smooth;
  }

  body {
    background: #FFFEF9;
  }

  .dw-quote-cta-section {
    width: 100%;
    padding: 38px 20px;
    background: #FFFEF9;
  }

  .dw-quote-cta-box {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #fffdf7 0%, #ffffff 52%, #fff1e5 100%);
    border: 1px solid #e7e2d8;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(23, 33, 47, 0.08);
    position: relative;
    overflow: hidden;
  }

  .dw-quote-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at left center, rgba(0, 101, 107, 0.08), transparent 30%),
      radial-gradient(circle at right center, rgba(242, 118, 29, 0.13), transparent 36%);
    pointer-events: none;
  }

  .dw-quote-cta-icon,
  .dw-quote-cta-text,
  .dw-quote-cta-button {
    position: relative;
    z-index: 1;
  }

  .dw-quote-cta-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(0, 101, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(0, 101, 107, 0.08);
  }

  .dw-quote-cta-icon svg {
    width: 42px;
    height: 42px;
    stroke: #00656B;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .dw-quote-cta-text h2 {
    margin: 0 0 5px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    color: #17212F;
  }

  .dw-quote-cta-text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #4b5563;
  }

  .dw-quote-cta-button {
    min-width: 310px;
    height: 58px;
    padding: 0 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff7a1a 0%, #f2761d 55%, #e95f0d 100%);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 12px 24px rgba(242, 118, 29, 0.28);
    transition: all 0.28s ease;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;
  }

  .dw-quote-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(242, 118, 29, 0.36);
  }

  .dw-button-text {
    display: inline-block;
    line-height: 1.1;
    white-space: nowrap;
  }

  .dw-button-arrow {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.28s ease;
    flex: 0 0 auto;
  }

  .dw-quote-cta-button:hover .dw-button-arrow {
    transform: translateX(5px);
  }

  @media (max-width: 900px) {
    .dw-quote-cta-box {
      grid-template-columns: auto 1fr;
      gap: 18px;
    }

    .dw-quote-cta-button {
      grid-column: 1 / -1;
      width: 100%;
    }

    .dw-quote-cta-text h2 {
      font-size: 25px;
    }
  }

  @media (max-width: 560px) {
    .dw-quote-cta-section {
      padding: 28px 14px;
    }

    .dw-quote-cta-box {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 28px 20px;
      border-radius: 20px;
      gap: 16px;
    }

    .dw-quote-cta-icon {
      width: 68px;
      height: 68px;
      margin: 0 auto;
    }

    .dw-quote-cta-icon svg {
      width: 38px;
      height: 38px;
    }

    .dw-quote-cta-text h2 {
      font-size: 23px;
      line-height: 1.35;
    }

    .dw-quote-cta-text p {
      font-size: 15px;
      line-height: 1.55;
    }

    .dw-quote-cta-button {
      min-width: 0;
      width: 100%;
      max-width: 100%;
      height: 54px;
      padding: 0 12px;
      font-size: 12px;
      line-height: 1;
      border-radius: 999px;
      margin-top: 4px;
      white-space: nowrap;
      text-align: center;
      gap: 6px;
      flex-wrap: nowrap;
    }

    .dw-button-text {
      display: inline-block;
      white-space: nowrap;
      line-height: 1;
      flex: 0 1 auto;
      min-width: 0;
    }

    .dw-button-arrow {
      font-size: 15px;
      line-height: 1;
      flex: 0 0 auto;
    }
  }

  @media (max-width: 380px) {
    .dw-quote-cta-button {
      font-size: 11px;
      padding: 0 10px;
      gap: 5px;
    }

    .dw-button-arrow {
      font-size: 14px;
    }
  }
