.ti-15719edc-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: inherit;
}

.ti-15719edc-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.ti-15719edc-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.ti-15719edc-icon-wrap svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.ti-15719edc-icon-wrap::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 5px;
    right: 5px;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
}

.ti-15719edc-content-col {
    flex: 1;
    padding-top: 10px;
}

.ti-15719edc-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.ti-15719edc-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.ti-15719edc-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-left: 20px;
}

.ti-15719edc-card {
    display: flex;
    align-items: center;
    background: #fcfcfc;
    border-radius: 8px;
    padding: 15px 20px;
    gap: 15px;
    border-left: 4px solid #0B3B82;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ti-15719edc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ti-15719edc-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ti-15719edc-card-icon svg {
    width: 18px;
    height: 18px;
}

.ti-15719edc-card-title {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.ti-15719edc-card-desc {
    margin: 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 767px) {
    .ti-15719edc-section {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }
    .ti-15719edc-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .ti-15719edc-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .ti-15719edc-cards {
        padding-left: 0;
    }
}