.quote {
    position: relative;
    font-size: 1.3em;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    margin: 2rem 0;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #4CAF50;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote::before {
    content: '"';
    position: absolute;
    top: 0px;
    left: 15px;
    font-size: 4rem;
    color: #4CAF50;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

.quote::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 15px;
    font-size: 4rem;
    color: #4CAF50;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

.quote-text {
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.quote-author {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: bold;
    color: #495057;
    text-align: right;
}

.quote-author::before {
    content: '— ';
    font-weight: normal;
}