/* Quote Block */
.quote-section {
    padding: 4rem 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding: 2rem;
}

.quote-text::before {
    content: "" ";
 font-size: 4rem;
    color: var(--color-secondary);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.quote-role {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}