/* Quote block styling */
.quote-block {
  font-family: 'Georgia', serif;
  color: #2c3e50;
  background: #f9f9f9;
  border-left: 5px solid #6b8e8c;
  padding: 1.5rem 2rem;
  margin: 1rem 0;
  position: relative;
  line-height: 1.6;
  max-width: 600px;
}

/* Add large decorative quote mark */
.quote-block::before {
  content: "“";
  font-size: 4rem;
  color: #6b8e8c;
  position: absolute;
  left: 10px;
  top: -10px;
  font-family: 'Georgia', serif;
}

/* Quote text (your h2) */
.quote-block h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  padding-left: 20px;
  font-style: italic;
}

/* Author (your p) */
.quote-block p {
  font-size: 1rem;

  margin: 0;
  text-align: right;
  color: #555;
  padding-right: 10px;
}