.qb-wrapper-60eccb9f {
    position: relative;
    width: 100%;
    background-color: #f6fdf9; /* Default light green bg */
    overflow: hidden;
    padding: 60px 20px;
}
/* Decorative circle anclado a TODA la sección (no a la columna de texto) */
.qb-wrapper-60eccb9f::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15%; /* ajusta a ojo: más negativo = se corta más */
    height: 100%;
    aspect-ratio: 1 / 1;
    width: auto;
    background-color: #e6faf1; /* lighter green circle */
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.qb-container-60eccb9f {
    position: relative;
    z-index: 1; /* asegura que el contenido quede encima del círculo */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.qb-left-col-60eccb9f {
    flex: 1 1 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.qb-dec-circle-60eccb9f {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #409e75; /* default green */
    z-index: 1;
}
.qb-image-wrap-60eccb9f {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.qb-image-wrap-60eccb9f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.qb-right-col-60eccb9f {
    flex: 1 1 50%;
    position: relative;
    padding: 60px 40px;
    z-index: 2;
}
.qb-quote-60eccb9f {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #0d8349;
    margin: 0 0 24px 0;
}
.qb-author-60eccb9f {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}
.qb-link-60eccb9f {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #0d8349;
    text-decoration: none;
    transition: opacity 0.2s;
}
.qb-link-60eccb9f:hover {
    opacity: 0.8;
}
.qb-quotes-icon-60eccb9f {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.8;
}
/* Modal Styles */
.qb-modal-overlay-60eccb9f {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.qb-modal-overlay-60eccb9f.qb-modal-active-60eccb9f {
    opacity: 1;
    visibility: visible;
}
.qb-modal-box-60eccb9f {
    width: 90%;
    max-width: 900px;
    height: 70vh;
    background: #fff;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.qb-modal-overlay-60eccb9f.qb-modal-active-60eccb9f .qb-modal-box-60eccb9f {
    transform: translateY(0);
}
.qb-modal-image-col-60eccb9f {
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
}
.qb-modal-content-area-60eccb9f {
    flex: 1 1 50%;
    padding: 40px;
    overflow-y: auto;
    background-color: #fff;
    color: #333;
}
.qb-modal-inner-60eccb9f {
    max-width: 100%;
}
.qb-modal-close-60eccb9f {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.1);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.qb-modal-close-60eccb9f:hover {
    background: rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .qb-container-60eccb9f {
        flex-direction: column;
    }
    .qb-wrapper-60eccb9f::after {
        height: 80%;
        right: -25%;
        top: 10%;
    }
    .qb-left-col-60eccb9f {
        padding: 20px;
        width: 100%;
    }
    .qb-right-col-60eccb9f {
        padding: 24px 0;
    }
    .qb-modal-box-60eccb9f {
        flex-direction: column;
        height: 85vh;
    }
    .qb-modal-image-col-60eccb9f {
        flex: none;
        height: 250px;
    }
}