:root {
    /* Primary Color Palette */
    --hot-fuchsia: #F8004D;
    --wheat: #F3D8AF;
    --cotton-rose: #EBBDBF;
    --sunflower-gold: #E9B849;
    --espresso: #4A2114;
    --crimson-violet: #681B3A;
    --almond-cream: #F4E3D4;
    --carmine: #BA143A;
    --space-indigo: #1B1C4B;
    --toffee-brown: #915D3C;
}

.quote-section {
    padding: 100px 10%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.quote-container {
    display: flex;
    align-items: center; 
    max-width: 1100px;
    gap: 60px;
}

.quote-image {
    flex: 1;
}

.quote-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px; 
    display: block;
}

.quote-content {
    flex: 1;
}

.quote-content blockquote {
    font-family: serif; 
    font-size: 28px;
    line-height: 1.4;
    color: var(--espresso);
    margin-bottom: 30px;
    position: relative;
}

.quote-content cite {
    font-size: 14px;
    color: var(--crimson-violet);
    font-style: normal;
    font-family: sans-serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .quote-container {
        flex-direction: column;
        text-align: center;
    }
    
    .quote-content blockquote {
        font-size: 22px;
    }
}