/* Quotation Section */
.quotation-section {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.quotation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between text and image */
}

.quotation-text {
    max-width: 600px;
}

blockquote {
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin: 0;
    padding: 0 20px;
    border-left: 4px solid #00b33c; /* Highlight the quote */
    position: relative;
}

blockquote p {
    margin: 0;
}

blockquote footer {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    display: block;
    text-align: right;
}

.quotation-image img {
    border-radius: 50%;
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Maintain aspect ratio */
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .quotation-content {
        flex-direction: column;
    }

    .quotation-text {
        max-width: 100%;
    }

    .quotation-image img {
        width: 120px;
        height: 120px;
    }

    blockquote {
        font-size: 16px;
    }

    blockquote footer {
        font-size: 14px;
    }

}

@media (max-width: 480px) {
    blockquote {
        font-size: 16px;
    }

    blockquote footer {
        font-size: 14px;
    }

    .quotation-image img {
        width: 100px;
        height: 100px;
    }
}
