/* Container for the check and text */
.check-segment {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Wrapper for the overlapping circle and check */
.check-graphic-wrapper {
    margin-top: 25px;
    position: relative;
    width: 40px;
    height: 40px;
}

.circle {
    display: block;
    width: 40px;
    fill: none; /* Changed to none to allow circle path to show */
}

.check {
    display: block;
    width: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.perk {
    margin-top: 10px;
    text-align: left;
    padding: 0 20%;
}

.perk span {
    font-weight: 900;
}

/* Responsive adjustments */
@media only screen and (min-device-width : 375px) and (max-device-width : 812px) {
    .check-graphic-wrapper {
        width: 60px;
        height: 60px;
    }
    .circle, .check {
        width: 60px;
    }
    .perk {
        margin-top: 30px;
    }
}