blockquote {
  position: relative;
  font-size: 1.5em;
  font-style: italic;
  color: #555;
  margin: 40px 20px;
  padding: 20px 50px;
  line-height: 1.5;
  background: #f9f9f9;
  border-left: 7px solid #ccc;
  border-radius:7px;
}
blockquote::before {
  content: "“";
  font-size: 4em;
  color: #ccc;
  position: absolute;
  left: 10px;
  top: -10px;
}
blockquote cite {
  display: block;
  margin-top: 45px;
  text-align: right;
  font-size: 0.9em;
  color: #999;
}
blockquote cite::before {
  content: "— ";
}

.quote-mark {
    max-width: 600px; /* Set the maximum width */
    margin: 0 auto; /* Center the quote */
    padding: 10px 20px 20px 20px; /* Optional: add some padding for spacing */
}

.quote-mark p {
    font-size: 1.4em;
    color: #333;
    text-align: center;
    font-style: italic;
    position: relative;
    margin: 10px 10px 10px 30px;
    line-height: 1.5;
}

.quote-mark p::before,
.quote-mark p::after {
    content: '“';
    font-size: 2em;
/*    color: #4CAF50; */
    position: absolute;
}

.quote-mark p::before {
    left: -20px;
    top: -10px;
}

.quote-mark p::after {
    content: '”';
    right: -10px;
    bottom: -10px;
}

.quote-mark span {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #777;
}
