
.container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Common styles for all sections */
.quote-section {
    display: flex;
    align-items: center;
    
    width: 100%;
    margin: 10px 0;
    display: flex;
}

/* Image Styling */
.quote-section img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 10px;
    border: 5px solid transparent;

}
/* Chat Bubble Effect */
.quote-container {
    max-width: 60%;
    background: white;
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Align Right */
.quote-section.right {
    justify-content: flex-end;
    text-align: right;
}

/* Align Left */
.quote-section.left {
    justify-content: flex-start;
    text-align: left;
}

/* Different colors for left and right bubbles */
.quote-section.right .quote-container {
    background: #d0e7ff; /* Light blue */
}

.quote-section.left .quote-container {
    background: #c3f3b3; /* Light green */
}
