/* Quotes Section */
.quotes-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote {
    margin: 60px 0;
    padding: 30px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.quote:hover {
    transform: scale(1.02);
}

.quote-content {
    font-size: 2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.quote-author {
    color: #ddd;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-content {
        font-size: 1.5rem;
    }
    
    .quote {
        padding: 20px 10px;
        margin: 40px 0;
    }
}
