 

  .pull-quote {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
  }

  .pull-quote blockquote {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    position: relative;
    padding: 1.5rem 2rem;
    border-left: 6px solid #ff6b35;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .pull-quote blockquote::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: #ff6b35;
    opacity: 0.2;
  }

  .pull-quote footer {
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    text-align: right;
  }

  @media (max-width: 768px) {
    .pull-quote blockquote {
      font-size: 1.25rem;
      padding: 1.2rem 1.5rem;
    }

    .pull-quote blockquote::before {
      font-size: 3rem;
    }
  }

  @media (max-width: 480px) {
    .pull-quote blockquote {
      font-size: 1.1rem;
      padding: 1rem 1.2rem;
    }

    .pull-quote footer {
      font-size: 0.9rem;
    }
  }