.strategy-results {
    position: relative;
}

.strategy-results__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.strategy-results__title {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
    margin: 0 0 2.5rem 0;
}

.strategy-results__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strategy-results__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.strategy-results__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-results__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.strategy-results__text {
    flex: 1;
    font-family: Lexend, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
}

.strategy-results__text strong {
    font-family: Lexend, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 8px;
    display: inline-block;
}

.strategy-results__concluding {
    font-family: Lexend, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
    margin: 2rem 0 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .strategy-results__container {
        padding: 0 20px;
    }
    
    .strategy-results__title {
        margin-bottom: 2rem;
    }
    
    .strategy-results__list {
        gap: 1.25rem;
    }
    
    .strategy-results__item {
        gap: 1rem;
    }
    
    .strategy-results__icon {
        width: 32px;
        height: 32px;
    }
    
    .strategy-results__text,
    .strategy-results__concluding {
        font-size: 16px;
    }
}

