.guarantee-widget {
    
    h1 {
        text-align: left;
        vertical-align: middle;
    }

    .icon-wrapper {
        position: relative;
        width: 200px;
        height: 200px;
        z-index: 1;
    }

    .icon {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .icon.active {
        color: #fff;
    }

    .active-bg {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #C1DB79;
        z-index: 0;
        transition: all 0.5s ease;
    }

    /* Стили для SVG иконок */
    .icon-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .icon.active .icon-img {
        filter: brightness(0) invert(1);
    }

    /* Текстовое поле */
    .text-container {
        flex: 1;
        padding: 25px;
        background-color: #C1DB79;
        min-height: 150px;
        display: flex;
        align-items: center;
        text-align: right;
        color: white;
    }

    #content-text {
        margin: 0;
        font-size: 18px;
        line-height: 1.6;
        transition: opacity 0.3s ease;
    }

    .widget-title {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
        font-weight: 600;
    }

    /* Скрытые текстовые шаблоны */
    .text-templates {
        display: none;
    }

    .text-template {
        display: none;
    }

    .img-dog {
        position: absolute;
    }
}