/* Quote Section Styles */
.quote-container {
    position: relative;
    padding: 40px 20px;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(255, 110, 66, 0.2); /* Primary color with low opacity */
    display: block;
    margin-bottom: 20px;
}

.quote-text {
    font-family: 'Playfair Display', serif; /* Assuming a serif font or fallback */
    font-size: 1.75rem;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.4rem;
    }
    .quote-icon {
        font-size: 2rem;
    }
}
