    .graphic-wrapper {
        display: flex;
        flex-direction: row;
        gap: 100px;
        margin-bottom: 100px;
        margin-top: 100px;
    }
    
    .graphic-description {
        padding: 10px;
        box-shadow: 2px 2px 3px gray;
        border-top: 5px solid #ff7e3d;
        border-radius: 0;
        background-color: #3E72B009;
    }
    
    .graphic-description h3 {
        margin-top: 0;
    }
    
    .graphic-description-wrapper {
        width: 50%;
    }
    
    .circle-div {
        flex-shrink: 0;
        width: 600px;
        height: 645px;
        position: relative;
        border-radius: 50%;
    }
    
    .circle-section {
        width: 300px;
        height: 215px;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        display: block;
        transition: 0.25s all ease;
        padding: 0;
        margin: 0;
        background-color: transparent;
        border: none;
    }
    
    .circle-section .cls-2 {
        fill: #343439;
        filter: drop-shadow(0px 0px 2px rgb(0 0 0 / 0.4));
        transition: 0.25s all ease;
    }
    
    .circle-section .cls-1 {
        transition: 0.25s all ease;
        opacity: 0.8;
    }
    
    .stop1 {
        stop-color: #0E4066;
    }
    
    .stop2 {
        stop-color: #3E72B0;
    }
    
    .circle-center {
        width: 180px;
        height: 220px;
        left: 50%;
        top: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .arrow-graphic {
        position: absolute;
        width: 60px;
        height: auto;
    }
    
    .circle-section:hover,
    .circle-section.active,
    .circle-section:focus {
        width: 350px;
        height: 255px;
        outline: none;
    }
    
    .circle-section-top {
        top: 0;
        left: 150px;
    }
    
    .circle-section-top:hover,
    .circle-section-top.active,
    .circle-section-top:focus {
        transform: translate(-25px, -45px);
    }
    
    .circle-section-bottom {
        top: 435px;
        left: 150px;
    }
    
    .circle-section-top-right {
        bottom: 325px;
        left: 335px;
    }
    
    .circle-section-bottom:hover,
    .circle-section-bottom.active,
    .circle-section-bottom:focus {
        transform: translate(-25px, 25px);
    }
    
    .circle-section-top-left {
        bottom: 325px;
        right: 335px;
    }
    
    .circle-section-bottom-right {
        top: 325px;
        left: 335px;
    }
    
    .circle-section-bottom-left {
        top: 325px;
        right: 335px;
    }
    
    .arrow-graphic-top {
        right: 15%;
        top: 45%;
    }
    
    .arrow-graphic-top-left {
        top: 10%;
        right: 20%;
        transform: rotate(300deg);
    }
    
    .arrow-graphic-top-right {
        bottom: 0%;
        left: 45%;
        transform: rotate(60deg);
    }
    
    .arrow-graphic-bottom-right {
        bottom: 15%;
        left: 20%;
        transform: rotate(120deg);
    }
    
    .arrow-graphic-bottom-left {
        top: -5%;
        right: 45%;
        transform: rotate(240deg);
    }
    
    .arrow-graphic-bottom {
        left: 15%;
        bottom: 50%;
        transform: rotate(180deg);
    }
    
    .circle-section-content {
        position: absolute;
        text-align: center;
        top: 40%;
        left: 50%;
        margin-bottom: 50px;
        transform: translate(-50%, -50%);
    }
    
    .circle-section-icon {
        transition: 0.25s all ease;
        height: 80px;
    }
    
    .circle-section-title {
        transition: 1s all ease;
        margin: 15px 0;
        color: white;
    }
    
    .circle-section-content.bottom {
        top: 60%;
    }
    
    .circle-section:hover .circle-section-icon,
    .circle-section.active .circle-section-icon,
    .circle-section:focus .circle-section-icon {
        height: 120px;
    }
    
    .circle-section:hover .circle-section-title,
    .circle-section.active .circle-section-title,
    .circle-section:focus .circle-section-title {
        text-shadow: 0 0 2px black;
    }
    
    .circle-section:hover .cls-1,
    .circle-section.active .cls-1,
    .circle-section:focus .cls-1 {
        opacity: 1;
    }
    
    .circle-section.active .cls-2 {
        filter: drop-shadow(0 0 2px white);
    }
    
    .graphic-description {
        display: none;
        opacity: 0;
        transition: 0.5s all ease;
        position: absolute;
    }
    
    .graphic-description.active {
        display: block;
        position: static;
    }
    
    .version-icon {
        display: inline-block;
        height: 30px;
        width: 30px;
        border-radius: 50%;
        text-align: center;
        border: 1px solid black;
        box-shadow: 0 0 3px black;
        margin-right: 5px;
    }
    
    .version-icon.enterprise {
        background-color: #007935;
    }
    
    .version-icon.professional {
        background-color: #ff7e3d;
    }
    
    .version-icon.basic {
        background-color: #152740;
    }
    
    .version-icon::before {
        font-weight: bold;
        vertical-align: text-top;
        color: white;
    }
    
    .version-icon.enterprise::before {
        content: "E";
    }
    
    .version-icon.basic::before {
        content: "B";
    }
    
    .version-icon.professional::before {
        content: "P";
    }
    
    .version-list {
        list-style: none;
        padding-left: 10px;
    }
    
    .version-list li {
        margin-bottom: 10px;
    }
    
    .graphic-intro {
        padding: 10px;
        box-shadow: 2px 2px 3px gray;
        border-top: 5px solid #ff7e3d;
        border-radius: 0;
        margin-bottom: 40px;
    }